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

1234567

/openjdk7/jdk/src/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;
/openjdk7/jdk/src/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...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCShiftInstruction.java31 final private int operation; field in class:SPARCShiftInstruction
33 public SPARCShiftInstruction(String name, int opcode, int operation, SPARCRegister rs1, argument
36 this.operation = operation;
40 return operation;
/openjdk7/corba/src/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
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86LogicInstruction.java33 final private int operation; field in class:X86LogicInstruction
35 public X86LogicInstruction(String name, int operation, Operand op1, Operand op2, int size, int prefixes) { argument
37 this.operation = operation;
64 return operation;
H A DX86ArithmeticInstruction.java31 final private int operation; //RTL operation field in class:X86ArithmeticInstruction
37 public X86ArithmeticInstruction(String name, int operation, Operand op1, Operand op2, int size, int prefixes) { argument
39 this.operation = operation;
46 public X86ArithmeticInstruction(String name, int operation, Operand op1, Operand op2, Operand op3, int size, int prefixes) { argument
48 this.operation = operation;
99 return operation;
H A DX86FPArithmeticInstruction.java31 final private int operation; //RTL operation field in class:X86FPArithmeticInstruction
36 public X86FPArithmeticInstruction(String name, int operation, Operand op1, Operand op2, int size, int prefixes) { argument
38 this.operation = operation;
79 return operation;
H A DX86ShiftInstruction.java30 final private int operation; field in class:X86ShiftInstruction
34 public X86ShiftInstruction(String name, int operation, Operand operand1, ImmediateOrRegister operand2, int size, int prefixes) { argument
38 this.operation = operation;
64 return operation;
/openjdk7/jaxws/src/share/jaxws_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...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLOutputImpl.java42 private WSDLOperationImpl operation; field in class:WSDLOutputImpl
46 public WSDLOutputImpl(XMLStreamReader xsr,String name, QName messageName, WSDLOperationImpl operation) { argument
50 this.operation = operation;
54 return (name == null)?operation.getName().getLocalPart()+"Response":name;
75 return operation;
80 return new QName(operation.getName().getNamespaceURI(), getName());
H A DWSDLInputImpl.java43 private WSDLOperationImpl operation; field in class:WSDLInputImpl
48 public WSDLInputImpl(XMLStreamReader xsr,String name, QName messageName, WSDLOperationImpl 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 DWSDLFaultImpl.java42 private WSDLOperationImpl operation; field in class:WSDLFaultImpl
46 public WSDLFaultImpl(XMLStreamReader xsr, String name, QName messageName, WSDLOperationImpl operation) { argument
50 this.operation = operation;
63 return operation;
68 return new QName(operation.getName().getNamespaceURI(), name);
/openjdk7/jaxp/src/org/w3c/dom/
H A DUserDataHandler.java86 * @param operation Specifies the type of operation that is being
95 public void handle(short operation, argument
/openjdk7/corba/src/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
/openjdk7/langtools/test/tools/javadoc/enum/docComments/
H A DMain.java46 ClassDoc operation = root.classes()[0];
48 checkComment(operation.commentText(), "Arithmetic operations.");
50 for (FieldDoc f : operation.fields()) {
53 for (MethodDoc m : operation.methods()) {
56 "Perform arithmetic operation " +
/openjdk7/corba/src/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 ; }
/openjdk7/jaxws/src/share/jaxws_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...]
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/spec/
H A DXPathType.java73 * Represents the filter set operation.
76 private final String operation; field in class:XPathType.Filter
78 private Filter(String operation) { argument
79 this.operation = operation;
83 * Returns the string form of the operation.
85 * @return the string form of the operation
88 return operation;
92 * The intersect filter operation.
97 * The subtract filter operation
[all...]
/openjdk7/jaxws/src/share/jaxws_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...]
/openjdk7/corba/src/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
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DUnaryExpr.java45 public UnaryExpr (String operation, Expression unaryOperand) argument
47 _op = operation;

Completed in 880 milliseconds

1234567