Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for SetPrefix (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

         * Gets the prefix of the plugin.
         *
         * @return The prefix of the plugin.
         */
        String getPrefix();
    
        /**
         * Sets the prefix of the plugin.
         *
         * @param prefix The prefix of the plugin.
         * @return This request, never {@code null}.
         */
        PluginPrefixRequest setPrefix(String prefix);
    
        /**
         * Gets the list of group ids to scan for the plugin prefix.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

                setPom(project.getModel());
            }
    
            setPluginGroups(session.getPluginGroups());
        }
    
        public String getPrefix() {
            return prefix;
        }
    
        public DefaultPluginPrefixRequest setPrefix(String prefix) {
            this.prefix = prefix;
    
            return this;
        }
    
        public List<String> getPluginGroups() {
            return pluginGroups;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java

                Plugin plugin = i.next();
                if (plugin.getPrefix().equals(goalPrefix)) {
                    found = true;
                }
            }
            if (!found) {
                Plugin plugin = new Plugin();
                plugin.setPrefix(goalPrefix);
                plugin.setArtifactId(artifactId);
                plugin.setName(name);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    setOutput(java.io.OutputStream, String) throws java.io.IOException; public void startDocument(String, Boolean) throws java.io.IOException; public void endDocument() throws java.io.IOException; public void setPrefix(String, String) throws java.io.IOException; protected String lookupOrDeclarePrefi(String); public String getPrefix(String, boolean); private String generatePrefix(String); public int getDepth(); public String getNamespace(); public String getName(); public XmlSerializer startTag(String, String) throws...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
  5. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    setOutput(java.io.OutputStream, String) throws java.io.IOException; public void startDocument(String, Boolean) throws java.io.IOException; public void endDocument() throws java.io.IOException; public void setPrefix(String, String) throws java.io.IOException; protected String lookupOrDeclarePrefi(String); public String getPrefix(String, boolean); private String generatePrefix(String); public int getDepth(); public String getNamespace(); public String getName(); public XmlSerializer startTag(String, String) throws...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 164.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    setOutput(java.io.OutputStream, String) throws java.io.IOException; public void startDocument(String, Boolean) throws java.io.IOException; public void endDocument() throws java.io.IOException; public void setPrefix(String, String) throws java.io.IOException; protected String lookupOrDeclarePrefi(String); public String getPrefix(String, boolean); private String generatePrefix(String); public int getDepth(); public String getNamespace(); public String getName(); public XmlSerializer startTag(String, String) throws...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 164.6K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract void endDocument() throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract void setPrefix(String, String) throws java.io.IOException, IllegalArgumentExcep, IllegalStateExceptio; public abstract String getPrefix(String, boolean) throws IllegalArgumentExcep; public abstract int getDepth(); public abstract String getNamespace(); public abstract String getName(); public abstract XmlSerializer startTag(String,...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    setOutput(java.io.OutputStream, String) throws java.io.IOException; public void startDocument(String, Boolean) throws java.io.IOException; public void endDocument() throws java.io.IOException; public void setPrefix(String, String) throws java.io.IOException; protected String lookupOrDeclarePrefi(String); public String getPrefix(String, boolean); private String generatePrefix(String); public int getDepth(); public String getNamespace(); public String getName(); public XmlSerializer startTag(String, String) throws...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
  9. api/maven-api-metadata/src/main/mdo/metadata.mdo

            {
                boolean found = false;
    
                for ( Plugin preExisting : getPlugins() )
                {
                    if ( preExisting.getPrefix().equals( plugin.getPrefix() ) )
                    {
                        found = true;
                        break;
                    }
                }
    
                if ( !found )
                {
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    setOutput(java.io.OutputStream, String) throws java.io.IOException; public void startDocument(String, Boolean) throws java.io.IOException; public void endDocument() throws java.io.IOException; public void setPrefix(String, String) throws java.io.IOException; protected String lookupOrDeclarePrefi(String); public String getPrefix(String, boolean); private String generatePrefix(String); public int getDepth(); public String getNamespace(); public String getName(); public XmlSerializer startTag(String, String) throws...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 200.2K bytes
    - Viewed (0)
Back to top