Searched refs:type (Results 101 - 125 of 2756) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAbstractTypeImpl.java45 protected final Type type; field in class:AbstractTypeImpl
47 protected AbstractTypeImpl(DocEnv env, Type type) { argument
49 this.type = type;
53 return type.tsym.name.toString();
57 return type.tsym.getQualifiedName().toString();
61 return type.tsym.name.toString();
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryArithmeticExpression.java41 super(op, where, left.type, left, right);
45 * Select the type
49 type = Type.tDouble;
51 type = Type.tFloat;
53 type = Type.tLong;
55 type = Type.tInt;
57 left = convert(env, ctx, type, left);
58 right = convert(env, ctx, type, right);
H A DCastExpression.java45 super(CAST, where, left.type, left, right);
52 type = left.toType(env, ctx);
55 if (type.isType(TC_ERROR) || right.type.isType(TC_ERROR)) {
60 if (type.equals(right.type)) {
66 if (env.explicitCast(right.type, type)) {
67 right = new ConvertExpression(where, type, right);
75 env.error(where, "invalid.cast", right.type, typ
[all...]
H A DBinaryBitExpression.java43 super(op, where, left.type, left, right);
47 * Select the type
51 type = Type.tBoolean;
53 type = Type.tLong;
55 type = Type.tInt;
57 left = convert(env, ctx, type, left);
58 right = convert(env, ctx, type, right);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_ATTRIBUTE.java55 * class CK_ATTRIBUTE includes the type, value and length of an attribute.<p>
59 * CK_ATTRIBUTE_TYPE type;&nbsp;&nbsp;
127 public CK_ATTRIBUTE(long type) { argument
128 this.type = type;
131 public CK_ATTRIBUTE(long type, Object pValue) { argument
132 this.type = type;
136 public CK_ATTRIBUTE(long type, boolean value) { argument
137 this.type
141 CK_ATTRIBUTE(long type, long value) argument
146 CK_ATTRIBUTE(long type, BigInteger value) argument
194 public long type; field in class:CK_ATTRIBUTE
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMBinOp.java77 public CMBinOp(int type, CMNode leftNode, CMNode rightNode) argument
79 super(type);
82 if ((type() != XMLContentSpec.CONTENTSPECNODE_CHOICE)
83 && (type() != XMLContentSpec.CONTENTSPECNODE_SEQ))
118 if (type() == XMLContentSpec.CONTENTSPECNODE_CHOICE)
120 else if (type() == XMLContentSpec.CONTENTSPECNODE_SEQ)
132 if (type() == XMLContentSpec.CONTENTSPECNODE_CHOICE)
138 else if (type() == XMLContentSpec.CONTENTSPECNODE_SEQ)
157 if (type() == XMLContentSpec.CONTENTSPECNODE_CHOICE)
163 else if (type()
[all...]
H A DCMUniOp.java77 public CMUniOp(int type, CMNode childNode) argument
79 super(type);
82 if ((type() != XMLContentSpec.CONTENTSPECNODE_ZERO_OR_ONE)
83 && (type() != XMLContentSpec.CONTENTSPECNODE_ZERO_OR_MORE)
84 && (type() != XMLContentSpec.CONTENTSPECNODE_ONE_OR_MORE))
112 if (type() == XMLContentSpec.CONTENTSPECNODE_ONE_OR_MORE)
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLFrameHyperlinkEvent.java46 * @param type the event type
50 public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, argument
52 super(source, type, targetURL);
61 * @param type the event type
66 public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, argument
68 super(source, type, targetURL, desc);
76 * @param type the event type
82 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, Element sourceElement, String targetFrame) argument
100 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, Element sourceElement, String targetFrame) argument
119 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, Element sourceElement, InputEvent inputEvent, String targetFrame) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DRoot.java53 private int type; field in class:Root
58 // Values for type. Higher values are more interesting -- see getType().
73 public Root(long id, long refererId, int type, String description) { argument
74 this(id, refererId, type, description, null);
78 public Root(long id, long refererId, int type, String description, argument
82 this.type = type;
104 * Return type. We guarantee that more interesting roots will have
105 * a type that is numerically higher.
108 return type;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCSingleTypePropertyInfo.java45 protected final TypeUse type; field in class:CSingleTypePropertyInfo
52 * XML Schema type name of this property's single value. Optional
56 protected CSingleTypePropertyInfo(String name, TypeUse type, QName typeName, XSComponent source, CCustomizations customizations, Locator locator) { argument
57 super(name, type.isCollection(), source, customizations, locator);
58 this.type = type;
60 if(needsExplicitTypeName(type,typeName))
71 return type.idUse();
75 return type.getExpectedMimeType();
83 CNonElement r = type
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificate.java65 // the certificate type
66 private final String type; field in class:Certificate
69 * Creates a certificate of the specified type.
71 * @param type the standard name of the certificate type.
77 protected Certificate(String type) { argument
78 this.type = type;
82 * Returns the type of this certificate.
84 * @return the type o
211 private String type; field in class:Certificate.CertificateRep
224 CertificateRep(String type, byte[] data) argument
[all...]
H A DCertificateFactory.java95 * following standard <code>CertificateFactory</code> type:
104 * The type and encodings are described in the <a href=
128 // The certificate type
129 private String type; field in class:CertificateFactory
138 * Creates a CertificateFactory object of the given type, and encapsulates
143 * @param type the certificate type.
146 Provider provider, String type)
150 this.type = type;
145 CertificateFactory(CertificateFactorySpi certFacSpi, Provider provider, String type) argument
180 getInstance(String type) argument
226 getInstance(String type, String provider) argument
268 getInstance(String type, Provider provider) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DRef.java36 * Reference to a type in a model.
44 * The type being referenced.
46 * If the type is adapted, this field is the same as the adapter's default type.
48 public final T type; field in class:Ref
54 * If the {@link #type} is an array and it is a value list,
59 public Ref(T type) { argument
60 this(type,null,false);
63 public Ref(T type, Adapter<T, C> adapter, boolean valueList) { argument
66 type
71 Ref(ModelBuilder<T,C,?,?> builder, T type, XmlJavaTypeAdapter xjta, XmlList xl ) argument
75 Ref(AnnotationReader<T,C,?,?> reader, Navigator<T,C,?,?> nav, T type, XmlJavaTypeAdapter xjta, XmlList xl ) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationInvocationHandler.java44 private final Class<? extends Annotation> type; field in class:AnnotationInvocationHandler
47 AnnotationInvocationHandler(Class<? extends Annotation> type, Map<String, Object> memberValues) { argument
48 this.type = type;
66 return type;
72 throw new IncompleteAnnotationException(type, member);
88 Class<?> type = array.getClass();
90 if (type == byte[].class) {
94 if (type == char[].class) {
98 if (type
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DArrayType.java44 * method can be used to get the array element type. The getArrayDimension()
51 private Type type; field in class:ArrayType
61 * Create an ArrayType object for the given type.
76 // Find real type...
100 // Got a valid one. Make an array type...
119 * Return signature for this type (e.g. com.acme.Dynamite
123 return bracketsSig + type.getSignature();
127 * Get element type. Returns null if not an array.
130 return type;
148 * Return a string representation of this type
220 ArrayType(ContextStack stack, Type type, int arrayDimension) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DRowSorterEvent.java44 private Type type; field in class:RowSorterEvent
66 * Creates a <code>RowSorterEvent</code> of type
81 * @param type the type of event
84 * @throws IllegalArgumentException if source or <code>type</code> is
87 public RowSorterEvent(RowSorter source, Type type, argument
90 if (type == null) {
91 throw new IllegalArgumentException("type must be non-null");
93 this.type = type;
[all...]
H A DHyperlinkEvent.java57 * @param type the event type
60 public HyperlinkEvent(Object source, EventType type, URL u) { argument
61 this(source, type, u, null);
68 * @param type the event type
76 public HyperlinkEvent(Object source, EventType type, URL u, String desc) { argument
77 this(source, type, u, desc, null);
84 * @param type the event type
95 HyperlinkEvent(Object source, EventType type, URL u, String desc, Element sourceElement) argument
120 HyperlinkEvent(Object source, EventType type, URL u, String desc, Element sourceElement, InputEvent inputEvent) argument
185 private EventType type; field in class:HyperlinkEvent
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DStandardWatchEventKinds.java85 private final Class<T> type; field in class:StandardWatchEventKinds.StdWatchEventKind
86 StdWatchEventKind(String name, Class<T> type) { argument
88 this.type = type;
91 @Override public Class<T> type() { return type; } method in class:StandardWatchEventKinds.StdWatchEventKind
/openjdk7/jdk/src/share/classes/javax/naming/event/
H A DNamingEvent.java36 * <li>The event type.
75 * Naming event type for indicating that a new object has been added.
81 * Naming event type for indicating that an object has been removed.
87 * Naming event type for indicating that an object has been renamed.
110 * Naming event type for indicating that an object has been changed.
128 * Contains the type of this event.
135 protected int type; field in class:NamingEvent
155 * For an <tt>OBJECT_ADDED</tt> event type, <tt>newBd</tt> must not be null.
156 * For an <tt>OBJECT_REMOVED</tt> event type, <tt>oldBd</tt> must not be null.
157 * For an <tt>OBJECT_CHANGED</tt> event type, <t
172 NamingEvent(EventContext source, int type, Binding newBd, Binding oldBd, Object changeInfo) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DPersistenceDelegateFinder.java33 * to find a {@link PersistenceDelegate} for a JavaBean specified by its type.
49 public void register(Class<?> type, PersistenceDelegate delegate) { argument
52 this.registry.put(type, delegate);
55 this.registry.remove(type);
61 public PersistenceDelegate find(Class<?> type) { argument
64 delegate = this.registry.get(type);
66 return (delegate != null) ? delegate : super.find(type);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/dt/builtin/
H A DBuiltinDatatypeLibrary.java64 public DatatypeBuilder createDatatypeBuilder(String type) argument
72 if (type.equals("string") || type.equals("token")) {
74 xsdDatatypeLibrary.createDatatype(type));
78 public Datatype createDatatype(String type) throws DatatypeException { argument
79 return createDatatypeBuilder(type).createDatatype();
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4968523.java44 private static void test(Class<?> type, PersistenceDelegate pd) { argument
48 PersistenceDelegate pd1 = encoder1.getPersistenceDelegate(type);
49 PersistenceDelegate pd2 = encoder2.getPersistenceDelegate(type);
51 encoder1.setPersistenceDelegate(type, pd);
53 if (pd1 == encoder1.getPersistenceDelegate(type))
56 if (pd2 != encoder2.getPersistenceDelegate(type))
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DClassTypeImpl.java26 package com.sun.tools.apt.mirror.type;
30 import com.sun.mirror.type.*;
42 ClassTypeImpl(AptEnv env, Type.ClassType type) { argument
43 super(env, type);
59 if (type.tsym == env.symtab.objectType.tsym) {
62 Type sup = env.jctypes.supertype(type);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSNamedMap4Types.java39 // the type of component stored here: complex or simple type
47 * @param type the type of components
49 public XSNamedMap4Types(String namespace, SymbolHash map, short type) { argument
51 fType = type;
60 * @param type the type of components
62 public XSNamedMap4Types(String[] namespaces, SymbolHash[] maps, int num, short type) { argument
64 fType = type;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DTypeClosure.java31 * Perform a transitive closure operation on a type to determine if it
52 public boolean contains(XSType type) { argument
53 if( typeSet.contains(type) ) {
56 XSType baseType = type.getBaseType();
60 // climb the super type hierarchy

Completed in 129 milliseconds

1234567891011>>