Searched defs:definitions (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/instrument/
H A DInstrumentation.java71 * Registers the supplied transformer. All future class definitions
72 * will be seen by the transformer, except definitions of classes upon which any
113 * Unregisters the supplied transformer. Future class definitions will
324 * @param definitions array of classes to redefine with corresponding definitions;
336 * @throws java.lang.NullPointerException if the supplied definitions array or any of its components
345 redefineClasses(ClassDefinition... definitions) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocumentVisitor.java37 public void preVisit(Definitions definitions) throws Exception; argument
38 public void postVisit(Definitions definitions) throws Exception; argument
H A DWSDLDocumentVisitorBase.java39 public void preVisit(Definitions definitions) throws Exception { argument
41 public void postVisit(Definitions definitions) throws Exception { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGeneratorExtensionFacade.java64 public void addDefinitionsExtension(TypedXmlWriter definitions) { argument
66 e.addDefinitionsExtension(definitions);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWSDLParser.java195 Definitions definitions = parseDefinitions(context, root);
196 document.setDefinitions(definitions);
213 Definitions definitions = parseDefinitionsNoImport(context, root);
214 if(definitions == null){
221 return definitions;
258 if(e.getNamespaceURI() == null || (!e.getNamespaceURI().equals(WSDLConstants.NS_WSDL) || !e.getLocalName().equals("definitions"))){
264 Definitions definitions = new Definitions(context.getDocument(), forest.locatorTable.getStartLocation(e));
266 definitions.setName(name);
271 definitions.setTargetNamespaceURI(targetNamespaceURI);
287 if(definitions
332 parseMessage( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
409 parsePortType( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
706 parseBinding( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
928 parseImport( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
965 parseService( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
1006 parsePort( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/writer/
H A DWSDLGeneratorExtension.java93 * This method is invoked so that extensions to a <code>wsdl:definitions</code>
96 * @param definitions This is the <code>wsdl:defintions</code> element that the extension can be added to.
98 public void addDefinitionsExtension(TypedXmlWriter definitions) { argument
/openjdk7/jdk/src/share/classes/sun/instrument/
H A DInstrumentationImpl.java153 redefineClasses(ClassDefinition[] definitions) argument
158 if (definitions == null) {
159 throw new NullPointerException("null passed as 'definitions' in redefineClasses");
161 for (int i = 0; i < definitions.length; ++i) {
162 if (definitions[i] == null) {
163 throw new NullPointerException("element of 'definitions' is null in redefineClasses");
166 if (definitions.length == 0) {
170 redefineClasses0(mNativeAgent, definitions);
255 redefineClasses0(long nativeAgent, ClassDefinition[] definitions) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLGeneratorExtension.java145 public void addDefinitionsExtension(final TypedXmlWriter definitions) { argument
169 marshaller.marshal(policyInfoset, definitions);

Completed in 51 milliseconds