Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetImports (0.04 sec)

  1. api/go1.5.txt

    pkg go/types, method (*Package) MarkComplete()
    pkg go/types, method (*Package) Name() string
    pkg go/types, method (*Package) Path() string
    pkg go/types, method (*Package) Scope() *Scope
    pkg go/types, method (*Package) SetImports([]*Package)
    pkg go/types, method (*Package) String() string
    pkg go/types, method (*PkgName) Exported() bool
    pkg go/types, method (*PkgName) Id() string
    pkg go/types, method (*PkgName) Imported() *Package
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java

        @Override
        public RealmType getType() {
            return type;
        }
    
        @Override
        public ClassLoader getParent() {
            return parent;
        }
    
        @Override
        public List<String> getImports() {
            return getParentImports();
        }
    
        @Override
        public List<String> getParentImports() {
            return parentImports;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java

         */
        ClassLoader getParent();
    
        /**
         * @deprecated Use {@link #getParentImports()} instead.
         * @return imports
         */
        @Deprecated
        List<String> getImports();
    
        /**
         * Gets the packages/types to import from the parent realm.
         *
         * @return The modifiable list of packages/types to import from the parent realm, never {@code null}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top