Searched defs:overrides (Results 1 - 13 of 13) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DDeclarations.java59 * Tests whether one method overrides another. When a
60 * non-abstract method overrides an abstract one, the
65 * @return <tt>true</tt> if and only if the first method overrides
68 boolean overrides(MethodDeclaration sub, MethodDeclaration sup); method in interface:Declarations
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DMethodDoc.java50 * Return the class containing the method that this method overrides.
57 * defining a method that this method overrides, or null if
63 * Return the type containing the method that this method overrides.
73 * Return the method that this method overrides.
76 * in a superclass this method overrides, null if
82 * Tests whether this method overrides another.
86 * <p> When a non-abstract method overrides an abstract one, it is
90 * @return <tt>true</tt> if this method overrides the other
93 boolean overrides(MethodDoc meth); method in interface:MethodDoc
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DDeclarationsImpl.java114 public boolean overrides(MethodDeclaration sub, MethodDeclaration sup) { method in class:DeclarationsImpl
133 overrider.overrides(overridee, origin, env.jctypes, false);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DMethodDocImpl.java117 * Return the type containing the method that this method overrides.
132 if (sym.overrides(e.sym, origin, env.types, true)) {
141 * Return the method that this method overrides.
144 * in a superclass this method overrides, null if
150 // Likewise for constructors, but the MethodSymbol.overrides
164 if (sym.overrides(e.sym, origin, env.types, true)) {
173 * Tests whether this method overrides another.
177 * <p> When a non-abstract method overrides an abstract one, it is
181 * @return <tt>true</tt> if this method overrides the other
183 public boolean overrides(MethodDo method in class:MethodDocImpl
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupDesc.java94 * environment overrides (which will override system properties in
104 * @param overrides the set of properties to set when the group is
110 public ActivationGroupDesc(Properties overrides, argument
113 this(null, null, null, overrides, cmd);
127 * @param overrides a properties map which will override those set
137 Properties overrides,
140 this.props = overrides;
134 ActivationGroupDesc(String className, String location, MarshalledObject<?> data, Properties overrides, CommandEnvironment cmd) argument
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DElements.java167 * overrides another method.
168 * When a non-abstract method overrides an abstract one, the
176 * Object.hashCode}. We can then ask whether {@code m1} overrides
180 * {@code assert elements.overrides(m1, m2,
194 * {@code assert ! elements.overrides(m1, m2,
204 * {@code assert elements.overrides(m1, m2,
211 * @return {@code true} if and only if the first method overrides
216 boolean overrides(ExecutableElement overrider, ExecutableElement overridden, method in interface:Elements
/openjdk7/langtools/test/tools/apt/mirror/util/
H A DOverrides.java28 * @summary Test the Declarations.overrides method
56 void m1(int j) {}; // overrides A.m1
62 void m1(int i) {}; // overrides A.m1 and B.m1
63 void m2(int i) {}; // overrides A.m2
140 List<Boolean> overrides() { method in class:Overrides
142 decls.overrides(Am1, Am1),
143 decls.overrides(Bm1, Am1),
144 decls.overrides(Bm1b,Am1),
145 decls.overrides(Bm4, Am1),
146 decls.overrides(Cm
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaKeyBindings.java505 static void mergeBindings(final ArrayList<String> unifiedList, final String[] overrides) { argument
506 for (int i = 0; i < overrides.length; i+=2) {
507 final String key = overrides[i];
508 final String value = overrides[i+1];
/openjdk7/jdk/src/share/classes/javax/management/
H A DStandardMBean.java1042 * <p>It is good practice for a subclass that overrides this method
1087 * <p>It is good practice for a subclass that overrides this method
1109 * <p>It is good practice for a subclass that overrides this method
1129 * <p>It is good practice for a subclass that overrides this method
1181 static boolean overrides(Class<?> subclass, Class<?> superclass, method in class:StandardMBean
1206 if (overrides(subclass, StandardMBean.class,
1212 if (overrides(subclass, StandardMBean.class,
1218 if (overrides(subclass, StandardMBean.class,
1231 if (overrides(subclass, StandardEmitterMBean.class,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java417 && overrides((ExecutableElement)overrider.sym, (ExecutableElement)e.sym, (TypeElement)type.asElement())) {
521 public boolean overrides(ExecutableElement riderEl, method in class:JavacElements
536 // Symbol.overrides assumes the following
540 rider.overrides(ridee, origin, types, false);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DSchemaBuilderImpl.java590 private Override overrides; field in class:SchemaBuilderImpl.IncludeImpl
601 overrides = new Override(rp, overrides);
631 for (Override o = overrides; o != null; o = o.next) {
638 for (Override o = overrides; o != null; o = o.next) {
651 for (Override o = overrides; o != null; o = o.next)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java139 * A description of this symbol; overrides Object.
411 public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) { method in class:Symbol
1101 if (this.overrides(e.sym, (TypeSymbol)owner, types, true) &&
1162 public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) { method in class:Symbol.MethodSymbol
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java87 Parser (Preprocessor preprocessor, Arguments arguments, Hashtable overrides, argument
101 overrideNames = (overrides == null) ? new Hashtable () : overrides;
3135 // If this object is not in the overrides list, then it is
3136 // ok to put it in the table (if it IS in the overrides list,
3257 // If this object is not in the overrides list, then it is
3258 // ok to put it in the table (if it IS in the overrides list,

Completed in 85 milliseconds