Searched refs:operation (Results 1 - 25 of 169) sorted by relevance

1234567

/openjdk10/jdk/src/java.rmi/share/classes/java/rmi/server/
H A DOperation.java40 private String operation; field in class:Operation
50 operation = op;
61 return operation;
65 * Returns the string representation of the operation.
71 return operation;
/openjdk10/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/inspector/
H A DXMBeanOperations.java44 for(MBeanOperationInfo operation : operations) {
45 if (!( (operation.getSignature().length == 0 &&
46 operation.getName().startsWith("get") &&
47 !operation.getReturnType().equals("void")) ||
48 (operation.getSignature().length == 1 &&
49 operation.getName().startsWith("set") &&
50 operation.getReturnType().equals("void")) ||
51 (operation.getName().startsWith("is") &&
52 operation.getReturnType().equals("boolean"))
54 mbeanOperations.add(operation);
[all...]
H A DOperationEntry.java34 private MBeanOperationInfo operation; field in class:OperationEntry
37 public OperationEntry (MBeanOperationInfo operation, argument
42 this.operation = operation;
51 MBeanParameterInfo params[] = operation.getSignature();
92 MBeanParameterInfo params[] = operation.getSignature();
101 MBeanParameterInfo params[] = operation.getSignature();
109 return operation.getReturnType();
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orb/
H A DParserActionFactory.java34 Operation operation, String fieldName )
36 return new NormalParserAction( propertyName, operation, fieldName ) ;
40 Operation operation, String fieldName, Class componentType )
42 return new PrefixParserAction( propertyName, operation, fieldName, componentType ) ;
33 makeNormalAction( String propertyName, Operation operation, String fieldName ) argument
39 makePrefixAction( String propertyName, Operation operation, String fieldName, Class componentType ) argument
H A DParserActionBase.java35 private Operation operation ; field in class:ParserActionBase
40 return propertyName.hashCode() ^ operation.hashCode() ^
56 operation.equals( other.operation ) &&
61 Operation operation, String fieldName )
65 this.operation = operation ;
88 return operation ;
60 ParserActionBase( String propertyName, boolean prefix, Operation operation, String fieldName ) argument
H A DParserDataBase.java33 private Operation operation ; field in class:ParserDataBase
39 Operation operation, String fieldName, Object defaultValue,
43 this.operation = operation ;
50 public Operation getOperation() { return operation ; }
38 ParserDataBase( String propertyName, Operation operation, String fieldName, Object defaultValue, Object testValue ) argument
H A DNormalParserAction.java34 Operation operation, String fieldName )
36 super( propertyName, false, operation, fieldName ) ;
33 NormalParserAction( String propertyName, Operation operation, String fieldName ) argument
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/
H A DPolicyMapKey.java50 private final QName operation; field in class:PolicyMapKey
55 PolicyMapKey(final QName service, final QName port, final QName operation, final PolicyMapKeyHandler handler) { argument
56 this(service, port, operation, null, handler);
59 PolicyMapKey(final QName service, final QName port, final QName operation, final QName faultMessage, final PolicyMapKeyHandler handler) { argument
66 this.operation = operation;
74 this.operation = that.operation;
80 return operation;
128 result.append(this.service).append(", ").append(port).append(", ").append(operation)
[all...]
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/
H A DCallSiteDescriptor.java96 * class in which the call site occurs, the dynamic operation at the call
116 private final Operation operation; field in class:CallSiteDescriptor
124 * @param operation the dynamic operation at the call site.
129 public CallSiteDescriptor(final Lookup lookup, final Operation operation, final MethodType methodType) { argument
131 this.operation = Objects.requireNonNull(operation, "name");
136 * Returns the operation at the call site.
137 * @return the operation at the call site.
140 return operation;
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLInputImpl.java43 private EditableWSDLOperation operation; field in class:WSDLInputImpl
48 public WSDLInputImpl(XMLStreamReader xsr,String name, QName messageName, EditableWSDLOperation operation) { argument
52 this.operation = operation;
59 return (operation.isOneWay())?operation.getName().getLocalPart():operation.getName().getLocalPart()+"Request";
72 return operation;
76 return new QName(operation.getName().getNamespaceURI(), getName());
H A DWSDLOutputImpl.java43 private EditableWSDLOperation operation; field in class:WSDLOutputImpl
48 public WSDLOutputImpl(XMLStreamReader xsr,String name, QName messageName, EditableWSDLOperation operation) { argument
52 this.operation = operation;
56 return (name == null)?operation.getName().getLocalPart()+"Response":name;
77 return operation;
82 return new QName(operation.getName().getNamespaceURI(), getName());
H A DWSDLFaultImpl.java44 private EditableWSDLOperation operation; field in class:WSDLFaultImpl
48 public WSDLFaultImpl(XMLStreamReader xsr, String name, QName messageName, EditableWSDLOperation operation) { argument
52 this.operation = operation;
65 return operation;
70 return new QName(operation.getName().getNamespaceURI(), name);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DParserDataFactory.java32 Operation operation, String fieldName, Object defaultValue,
35 return new NormalParserData( propertyName, operation, fieldName,
40 Operation operation, String fieldName, Object defaultValue,
43 return new PrefixParserData( propertyName, operation, fieldName,
31 make( String propertyName, Operation operation, String fieldName, Object defaultValue, Object testValue, String testData ) argument
39 make( String propertyName, Operation operation, String fieldName, Object defaultValue, Object testValue, StringPair[] testData, Class componentType ) argument
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/
H A DUserDataHandler.java86 * @param operation Specifies the type of operation that is being
95 public void handle(short operation, argument
/openjdk10/langtools/test/jdk/javadoc/tool/enum/docComments/
H A DMain.java50 ClassDoc operation = root.classes()[0];
52 checkComment(operation.commentText(), "Arithmetic operations.");
54 for (FieldDoc f : operation.fields()) {
57 for (MethodDoc m : operation.methods()) {
60 "Perform arithmetic operation " +
/openjdk10/langtools/test/tools/javadoc/enum/docComments/
H A DMain.java47 ClassDoc operation = root.classes()[0];
49 checkComment(operation.commentText(), "Arithmetic operations.");
51 for (FieldDoc f : operation.fields()) {
54 for (MethodDoc m : operation.methods()) {
57 "Perform arithmetic operation " +
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/oa/
H A DOAInvocationInfo.java55 private String operation; field in class:OAInvocationInfo
68 public OAInvocationInfo( OAInvocationInfo info, String operation )
77 this.operation = operation;
95 public String getOperation() { return operation; }
99 public void setOperation( String operation ) { this.operation = operation ; }
/openjdk10/test/lib/jdk/test/lib/dcmd/
H A DJMXExecutor.java89 String operation = commandToMethodName(cmdParts[0]);
96 stdout = (String) mbs.invoke(beanName, operation, dcmdArgs, signature);
104 String message = "Unknown diagnostic command: " + operation;
107 rethrowExecutorException(operation, dcmdArgs, e);
113 rethrowExecutorException(operation, dcmdArgs, e);
124 private void rethrowExecutorException(String operation, Object[] dcmdArgs, argument
126 String message = String.format("Could not invoke: %s %s", operation,
160 String operation = "";
171 operation = operation
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/model/
H A DAsyncOperation.java54 * @param operation
56 public AsyncOperation(Operation operation, Entity entity) { argument
57 super(operation, entity);
58 this.operation = operation;
116 return operation;
119 public void setNormalOperation(Operation operation){ argument
120 this.operation = operation;
127 //Normal operation
128 private Operation operation; field in class:AsyncOperation
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/jaxws/
H A DBuilderHandlerOperationScope.java46 private final QName operation; field in class:BuilderHandlerOperationScope
53 , QName service, QName port, QName operation) {
58 this.operation = operation;
62 final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation);
49 BuilderHandlerOperationScope( Collection<String> policyURIs , Map<String,PolicySourceModel> policyStore , Object policySubject , QName service, QName port, QName operation) argument
H A DBuilderHandlerMessageScope.java46 private final QName operation; field in class:BuilderHandlerMessageScope
63 , QName service, QName port, QName operation, QName message) {
68 this.operation = operation;
97 result = result && ((this.operation == null) ? ((that.operation == null) ? true : false) :this.operation.equals(that.operation));
112 hashCode = 31 * hashCode + (operation == null ? 0 : operation
58 BuilderHandlerMessageScope( Collection<String> policyURIs , Map<String,PolicySourceModel> policyStore , Object policySubject , Scope scope , QName service, QName port, QName operation, QName message) argument
[all...]
/openjdk10/jdk/src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/spec/
H A DXPathType.java72 * Represents the filter set operation.
75 private final String operation; field in class:XPathType.Filter
77 private Filter(String operation) { argument
78 this.operation = operation;
82 * Returns the string form of the operation.
84 * @return the string form of the operation
87 return operation;
91 * The intersect filter operation.
96 * The subtract filter operation
[all...]
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DObject.java140 * this operation, and other references to the same object are not affected.
164 * @param operation the name of the method to be invoked using the
168 Request _request(String operation); argument
179 * @param operation the name of the method to be invoked
192 String operation,
204 * @param operation the name of the method to be invoked
224 String operation,
191 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
223 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) argument
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DUnaryExpr.java45 public UnaryExpr (String operation, Expression unaryOperand) argument
47 _op = operation;
/openjdk10/jdk/src/java.management/share/classes/com/sun/jmx/mbeanserver/
H A DPerInterface.java105 Object invoke(Object resource, String operation, Object[] params, argument
109 final List<MethodAndSig> list = ops.get(operation);
111 final String msg = "No such operation: " + operation;
112 return noSuchMethod(msg, resource, operation, params, signature,
128 msg = "Signature mismatch for operation " + operation +
132 msg = "Operation " + operation + " exists but not with " +
135 return noSuchMethod(msg, resource, operation, params, signature,
162 private Object noSuchMethod(String msg, Object resource, String operation, argument
250 visitOperation(String operationName, M operation) argument
[all...]

Completed in 224 milliseconds

1234567