Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for setAddDefaultEntities (0.43 sec)

  1. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java

         * Sets the state of the "add default entities" flag.
         *
         * @param addDefaultEntities a addDefaultEntities object.
         */
        public void setAddDefaultEntities(boolean addDefaultEntities) {
            delegate.setAddLocationInformation(addDefaultEntities);
        } // -- void setAddDefaultEntities( boolean )
    
        protected Model read(Reader reader, boolean strict, InputSource source) throws IOException, XmlPullParserException {
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Reader.java

        }
    
        /**
         * Sets the state of the "add default entities" flag.
         *
         * @param addDefaultEntities a addDefaultEntities object.
         */
        public void setAddDefaultEntities(boolean addDefaultEntities) {
            delegate.setAddDefaultEntities(addDefaultEntities);
        }
    
        /**
         * @param reader a reader object.
         * @param strict a strict object.
         * @throws IOException IOException if any.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:44:51 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Reader.java

        }
    
        /**
         * Sets the state of the "add default entities" flag.
         *
         * @param addDefaultEntities a addDefaultEntities object.
         */
        public void setAddDefaultEntities(boolean addDefaultEntities) {
            delegate.setAddDefaultEntities(addDefaultEntities);
        }
    
        /**
         * Method read.
         *
         * @param reader a reader object.
         * @param strict a strict object.
         * @return Metadata
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsXmlFactory.java

                    source = new InputSource(request.getLocation());
                }
                SettingsStaxReader xml = new SettingsStaxReader();
                xml.setAddDefaultEntities(request.isAddDefaultEntities());
                if (reader != null) {
                    return xml.read(reader, request.isStrict(), source);
                } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultToolchainsXmlFactory.java

                    source = new InputSource(request.getModelId(), request.getLocation());
                }
                MavenToolchainsStaxReader xml = new MavenToolchainsStaxReader();
                xml.setAddDefaultEntities(request.isAddDefaultEntities());
                if (reader != null) {
                    return xml.read(reader, request.isStrict());
                } else {
                    return xml.read(inputStream, request.isStrict());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPluginXmlFactory.java

                throw new IllegalArgumentException("path, url, reader or inputStream must be non null");
            }
            try {
                PluginDescriptorStaxReader xml = new PluginDescriptorStaxReader();
                xml.setAddDefaultEntities(request.isAddDefaultEntities());
                if (inputStream != null) {
                    return xml.read(inputStream, request.isStrict());
                } else if (reader != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelXmlFactory.java

                    source = new InputSource(
                            request.getModelId(), path != null ? path.toUri().toString() : null);
                }
                MavenStaxReader xml = new MavenStaxReader();
                xml.setAddDefaultEntities(request.isAddDefaultEntities());
                if (inputStream != null) {
                    return xml.read(inputStream, request.isStrict(), source);
                } else if (reader != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/mdo/reader-stax.vm

         * Sets the state of the "add default entities" flag.
         *
         * @param addDefaultEntities a addDefaultEntities object.
         */
        public void setAddDefaultEntities(boolean addDefaultEntities) {
            this.addDefaultEntities = addDefaultEntities;
        } //-- void setAddDefaultEntities(boolean)
    
    #if ( $locationTracking )
        /**
         * Returns the state of the "add location information" flag.
         *
         * @return boolean
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. src/mdo/reader.vm

         * Sets the state of the "add default entities" flag.
         *
         * @param addDefaultEntities a addDefaultEntities object.
         */
        public void setAddDefaultEntities(boolean addDefaultEntities) {
            this.addDefaultEntities = addDefaultEntities;
        } //-- void setAddDefaultEntities(boolean)
    
        public static interface ContentTransformer {
            /**
             * Interpolate the value read from the xpp3 document
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
Back to top