Searched defs:Scope (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/reflect/generics/scope/
H A DScope.java31 public interface Scope { interface
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DScope.java37 * Upon creation, a Scope is associated with a given program position;
41 * <p>A Scope does not itself contain the details of the elements corresponding
53 public interface Scope { interface
57 public Scope getEnclosingScope();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DScope.java52 public interface Scope< interface in inherits:GrammarSection
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DScope.java42 public final class Scope<BeanT,PropT,ItemT,PackT> { class
51 Scope(UnmarshallingContext context) { method in class:Scope
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DBuilderHandlerMessageScope.java48 private final Scope scope;
50 enum Scope{ enum in class:BuilderHandlerMessageScope
62 , Scope scope
94 if (this.scope != Scope.FaultMessageScope) {
109 if (scope != Scope.FaultMessageScope) {
120 if (Scope.FaultMessageScope == scope) {
126 if (Scope.InputMessageScope == scope) {
130 } else if (Scope.OutputMessageScope == scope) {
134 } else if (Scope.FaultMessageScope == scope) {
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/
H A DMessageContext.java183 public enum Scope {APPLICATION, HANDLER}; enum in interface:MessageContext
194 public void setScope(String name, Scope scope);
200 * @return Scope of the property
204 public Scope getScope(String name);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java32 * Scope class is a container for symbols which provides
43 public class Scope { class
51 public Scope next;
90 public static final Scope emptyScope = new Scope(null, null, new Entry[]{});
95 private Scope(Scope next, Symbol owner, Entry[] table) { method in class:Scope
104 private Scope(Scope next, Symbol owner, Entry[] table, int nelems) { method in class:Scope
112 public Scope(Symbo method in class:Scope
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java107 * {@link Scope} buffer.
109 private Scope[] scopes = new Scope[8];
128 private static final class Scope { class in class:DOMStreamReader
130 * Scope for the parent element.
132 final Scope parent;
147 Scope(Scope parent) { method in class:DOMStreamReader.Scope
188 for( Scope sp=this; sp!=null; sp=sp.parent ) {
210 for( Scope s
[all...]

Completed in 58 milliseconds