Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for implements (0.57 sec)

  1. maven-plugin-api/src/site/apt/index.apt

     -----
     Hervé Boutemy
     -----
     2012-06-02
     -----
    
    Maven 3 Plugin API
    
     The API for Maven 3 plugins - composed of goals implemented by Mojos - development:
    
     * goal code extends {{{./apidocs/org/apache/maven/plugin/AbstractMojo.html}<<<AbstractMojo>>> base class}} that implements {{{./apidocs/org/apache/maven/plugin/Mojo.html}<<<Mojo>>> interface}},
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/mdo/model.vm

    @Experimental
    @Generated @ThreadSafe @Immutable
    public class ${class.name}
        #if ( $class.superClass )
        extends ${class.superClass}
        #end
        #if ( $locationTracking )
        implements Serializable, InputLocationTracker
        #else
        implements Serializable
        #end
    {
        #if ( $class == $root )
        final String namespaceUri;
        final String modelEncoding;
        #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     * creation of an analysis session, and disposed after the analysis session has been invalidated.
     *
     * [KaResolveExtension] implements the [Disposable] interface. The resolve extension can then act as a parent disposable, e.g. for a message
     * bus connection.
     *
     * You *must not* implement [KaResolveExtension]s as module-level services, due to the following reasons:
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. maven-embedder/src/site/apt/logging.apt

         {{{http://slf4j.org/apidocs/org/slf4j/Logger.html}Logger}},
    
      *  instead of implementing Plexus logging API itself with basic output to console, Maven implements it using SLF4J API in
         {{{./apidocs/org/apache/maven/cli/logging/Slf4jLoggerManager.html}Slf4jLoggerManager}}
         / {{{./apidocs/org/apache/maven/cli/logging/Slf4jLogger.html}Slf4jLogger}}.
    
    
    * Logging Implementation
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/mdo/model-v3.vm

    package ${package};
    
      #foreach ( $imp in $imports )
    import $imp;
      #end
    
    @Generated
    public class ${class.name}
        #if ( $class.superClass )
        extends ${class.superClass}
        implements Serializable, Cloneable
        #else
        extends BaseObject
        #end
    {
    
        public ${class.name}() {
            this(${packageModelV4}.${class.name}.newInstance());
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * // SuperInterface.java
         * public interface SuperInterface {
         *     public static void fromSuperInterface() { }
         * }
         *
         * // SuperClass.java
         * public abstract class SuperClass implements SuperInterface {
         *     static class NestedSuperClass { }
         *     class InnerSuperClass { }
         *     public static void fromSuperClass() { }
         * }
         *
         * // FILE: JavaClass.java
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

    import org.jetbrains.kotlin.load.java.structure.impl.source.JavaElementSourceFactory
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.Name
    
    /**
     * Implements [KaNamedClassOrObjectSymbol] for a Java class. The underlying [firSymbol] is built lazily and only when needed. Many simple
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/mdo/merger.vm

            list.mergeAll(src, remapping);
            return list;
        }
    
        /**
         * Merging list
         * @param <V>
         */
        private static class MergingList<V> extends AbstractList<V> implements java.io.Serializable {
    
            private final KeyComputer<V> keyComputer;
            private Map<Object, V> map;
            private List<V> list;
    
            MergingList(KeyComputer<V> keyComputer, int initialCapacity) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10DataFlowInfoProvider.kt

        override fun getExitPointSnapshot(statements: List<KtExpression>): KaDataFlowExitPointSnapshot {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 924 bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.name.ClassId
    
    /**
     * A list of annotations applied for some entity.
     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
        public val annotations: List<KaAnnotation>
            get() = this
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top