// jQuery
$(document).ready(function() {
// code
})
simple rule: | |
we have object A and object Z. | |
if we have a pointer from object A to object Z then its aggregation.(no pointing from Z to A ,since it maks a simple relation). | |
if object Z cannot exists in the system without object A, then its composition. | |
its not that hard, even more ITS NOT THAT USEFUL. why? beacuse no body uses this stuff to the fine lines, its a loose model that lets you grasp what you want from the system. |
A Java object is considered immutable when its state cannot change after it is created. Use of immutable objects is widely accepted as a sound strategy for creating simple, reliable code. Immutable objects are particularly useful in concurrent applications. Since they cannot change state, they cannot be corrupted by thread interference or observed in an inconsistent state. java.lang.String and java.lang.Integer classes are the Examples of immutable objects from the Java Development Kit. Immutable objects simplify your program due to following characteristics :
Immutable objects are simple to use test and construct. Immutable objects are automatically thread-safe. Immutable objects do not require a copy constructor. Immutable objects do not require an implementation of clone. Immutable objects allow hashCode to use lazy initialization, and to cache its return value. Immutable objects do not need to be copied defensively when
package custom.xpath; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import javax.xml.transform.Transformer; | |
import javax.xml.transform.TransformerException; | |
import javax.xml.transform.TransformerFactory; | |
import javax.xml.transform.stream.StreamResult; | |
import javax.xml.transform.stream.StreamSource; |
import net.sf.saxon.lib.FeatureKeys; | |
import net.sf.saxon.s9api.Processor; | |
import net.sf.saxon.s9api.SaxonApiException; | |
import net.sf.saxon.s9api.XsltCompiler; | |
import net.sf.saxon.s9api.XsltExecutable; | |
import org.springframework.stereotype.Service; | |
import javax.xml.transform.stream.StreamSource; | |
import java.io.IOException; |
import net.sf.saxon.s9api.*; | |
import javax.xml.transform.stream.StreamSource; | |
import java.io.StringReader; | |
public class Main { | |
public static void main(String[] args) throws SaxonApiException { | |
String bookXml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + | |
"<books>\n" + | |
" <book category=\"reference\">\n" + | |
" <author>Nigel Rees</author>\n" + |
package com.secretcompany.esb.util.exchange; | |
import org.apache.http.auth.AuthScope; | |
import org.apache.http.auth.NTCredentials; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.impl.client.DefaultHttpClient; | |
import org.apache.xml.security.utils.Base64; | |
import org.springframework.web.context.request.RequestContextHolder; | |
import org.springframework.web.context.request.ServletRequestAttributes; | |
import org.springframework.ws.transport.WebServiceConnection; |
/* | |
* Created on 26.05.2003 | |
* | |
* To change the template for this generated file go to | |
* Window>Preferences>Java>Code Generation>Code and Comments | |
* $Id: DataDomBuilder.java,v 1.21 2004/02/05 09:27:55 rschumm Exp $ | |
*/ | |
package ch.zhwin.jdbc2xml; | |
import java.io.ByteArrayOutputStream; | |
import java.io.InputStream; | |
import java.io.StringReader; | |
import javax.xml.parsers.DocumentBuilder; | |
import javax.xml.parsers.DocumentBuilderFactory; | |
import javax.xml.transform.Transformer; | |
import javax.xml.transform.TransformerFactory; | |
import javax.xml.transform.dom.DOMSource; | |
import javax.xml.transform.stream.StreamResult; |