Searched defs:Type (Results 1 - 25 of 67) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/
H A DNewGeneric.java35 private static class Type<T> { class in class:NewGeneric
36 Type() { T t = new T(); } method in class:NewGeneric.Type
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DType.java29 * Type is the common superinterface for all types in the Java
36 public interface Type { interface
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DType.java33 * A Type may be used to represent a run-time type:
46 * The following table illustrates which subinterfaces of Type
53 * <TH id="declared" align="left" colspan=2>Type declared in target as</TH>
85 * <TH id="declared2" align="left">Type declared in target as</TH>
122 * @see Value Value - for relationship between Type and Value
130 public interface Type extends Mirror interface in inherits:Mirror
140 * @see <a href="doc-files/signature.html">Type Signatures</a>
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DEvent.java28 public static class Type { class in class:Event
29 private Type() {} method in class:Event.Type
30 public static final Type BREAKPOINT = new Type();
31 public static final Type EXCEPTION = new Type();
34 private Type type;
36 public Event(Type type) {
40 public Type getType() { return type; }
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcWhen.hpp33 enum Type { enum in class:GCWhen
39 static const char* to_string(GCWhen::Type when) {
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DCover.java34 public int Type; field in class:Cover
42 Type=type;
/openjdk7/jdk/test/javax/management/openmbean/
H A DOpenTypeDescriptorTest.java141 for (Type t : Type.values()) {
172 private static enum Type {ATTR, PARAM, OPER} enum in class:OpenTypeDescriptorTest
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DCompoundControl.java61 protected CompoundControl(Type type, Control[] memberControls) {
116 * An instance of the <code>CompoundControl.Type</code> inner class identifies one kind of
123 public static class Type extends Control.Type { class in class:CompoundControl
135 protected Type(String name) { method in class:CompoundControl.Type
138 } // class Type
H A DControl.java32 * argument to a {@link Line#getControl(Control.Type) getControl} method.
52 private final Type type;
62 protected Control(Type type) {
73 public Type getType() {
90 * An instance of the <code>Type</code> class represents the type of
94 public static class Type { class in class:Control
101 * Type name.
114 protected Type(String name) { method in class:Control.Type
144 } // class Type
H A DEnumControl.java45 * of a <code>{@link EnumControl.Type#REVERB REVERB}</code> control are instances of
84 protected EnumControl(Type type, Object[] values, Object value) {
178 * An instance of the <code>EnumControl.Type</code> inner class identifies one kind of
187 public static class Type extends Control.Type { class in class:EnumControl
199 public static final Type REVERB = new Type("Reverb");
209 protected Type(String name) { method in class:EnumControl.Type
212 } // class Type
H A DBooleanControl.java35 * <code>{@link BooleanControl.Type#MUTE MUTE}</code> control to silence
79 protected BooleanControl(Type type, boolean initialValue, String trueStateLabel, String falseStateLabel) {
96 protected BooleanControl(Type type, boolean initialValue) {
153 * An instance of the <code>BooleanControl.Type</code> class identifies one kind of
160 public static class Type extends Control.Type { class in class:BooleanControl
170 public static final Type MUTE = new Type("Mute");
178 public static final Type APPLY_REVERB = new Type("Appl
188 protected Type(String name) { method in class:BooleanControl.Type
[all...]
H A DLineEvent.java58 private final Type type;
83 public LineEvent(Line line, Type type, long position) {
102 * @return this event's type ({@link Type#OPEN}, {@link Type#CLOSE},
103 * {@link Type#START}, or {@link Type#STOP})
105 public final Type getType() {
152 * The LineEvent.Type inner class identifies what kind of event occurred on a line.
157 public static class Type { class in class:LineEvent
161 * Type nam
170 protected Type(String name) { method in class:LineEvent.Type
[all...]
H A DAudioFileFormat.java113 private Type type;
147 protected AudioFileFormat(Type type, int byteLength, AudioFormat format, int frameLength) {
165 public AudioFileFormat(Type type, AudioFormat format, int frameLength) {
187 public AudioFileFormat(Type type, AudioFormat format,
198 * @see Type#WAVE
199 * @see Type#AU
200 * @see Type#AIFF
201 * @see Type#AIFC
202 * @see Type#SND
204 public Type getTyp
315 public static class Type { class in class:AudioFileFormat
366 public Type(String name, String extension) { method in class:AudioFileFormat.Type
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DRowSorterEvent.java33 * <li><code>Type.SORT_ORDER_CHANGED</code>: indicates the sort order has
35 * <li><code>Type.SORTED</code>: indicates the contents of the model have
44 private Type type;
52 public enum Type { enum in class:RowSorterEvent
74 this(source, Type.SORT_ORDER_CHANGED, null);
87 public RowSorterEvent(RowSorter source, Type type,
111 public Type getType() {
/openjdk7/jdk/src/share/classes/java/net/
H A DProxy.java45 public enum Type { enum in class:Proxy
60 private Type type;
88 * @param type the <code>Type</code> of the proxy
93 public Proxy(Type type, SocketAddress sa) {
94 if ((type == Type.DIRECT) || !(sa instanceof InetSocketAddress))
103 * @return a Type representing the proxy type
105 public Type type() {
129 if (type() == Type.DIRECT)
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyRep.java66 public static enum Type { enum in class:KeyRep
68 /** Type for secret keys. */
71 /** Type for public keys. */
74 /** Type for private keys. */
84 * Either one of Type.SECRET, Type.PUBLIC, or Type.PRIVATE
88 private Type type;
116 * @param type either one of Type.SECRET, Type
[all...]
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DType.java39 public interface Type { interface
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DLastReqEntry.java44 public LastReqEntry(int Type, KerberosTime time){ argument
45 lrType = Type;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DDebugEvent.java37 public static class Type { class in interface:DebugEvent
38 private Type() {} method in class:DebugEvent.Type
40 public static final Type LOADOBJECT_LOAD = new Type();
42 public static final Type LOADOBJECT_UNLOAD = new Type();
44 public static final Type BREAKPOINT = new Type();
46 public static final Type SINGLE_STEP = new Type();
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCacheValue.java40 public enum Type { enum in class:AuthCacheValue
61 abstract Type getAuthType ();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DMultiUIDefaults.java105 MultiUIDefaultsEnumerator.Type.KEYS, entrySet());
112 MultiUIDefaultsEnumerator.Type.ELEMENTS, entrySet());
138 public static enum Type { KEYS, ELEMENTS }; enum in class:MultiUIDefaults.MultiUIDefaultsEnumerator
140 private Type type;
142 MultiUIDefaultsEnumerator(Type type, Set<Entry<Object, Object>> entries) {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/
H A DRetrievalMethod.java75 * @param Type
78 String Type) {
84 if (Type != null) {
85 this._constructionElement.setAttributeNS(null, Constants._ATT_TYPE, Type);
77 RetrievalMethod(Document doc, String URI, Transforms transforms, String Type) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DRef.java61 public static interface Type { interface in class:Ref
70 public static interface SimpleType extends Ref.Type {
74 public static interface ComplexType extends Ref.Type {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXNodeInfo.java40 public static enum Type { enum in class:XNodeInfo
46 public XNodeInfo(Type type, Object data, String label, String tooltip) {
53 public Type getType() {
73 private Type type;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DType.java71 public abstract class Type implements java.io.Serializable { class in inherits:java.io.Serializable
90 public static final Type[] NO_ARGS = new Type[0];
92 public static final Type UNKNOWN = new Type(Constants.T_UNKNOWN,
95 protected Type(byte t, String s) { method in class:Type
123 * @return Type string, e.g. `int[]'
126 return ((this.equals(Type.NULL) || (type >= Constants.T_UNKNOWN)))? signature :
138 public static String getMethodSignature(Type return_type, Type[] arg_type
[all...]

Completed in 364 milliseconds

123