Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setAltDeployDescriptor (0.3 sec)

  1. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/EarModule.java

         * from the default location and file name required by the respective component specification.
         */
        String getAltDeployDescriptor();
    
        void setAltDeployDescriptor(String altDeployDescriptor);
    
        /**
         * Convert this object to an XML Node (or two nodes if altDeployDescriptor is not null).
         *
         * @param parentModule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultEarModule.java

            this.path = path;
        }
    
        @Override
        public String getAltDeployDescriptor() {
            return altDeployDescriptor;
        }
    
        @Override
        public void setAltDeployDescriptor(String altDeployDescriptor) {
            this.altDeployDescriptor = altDeployDescriptor;
        }
    
        @Override
        public Node toXmlNode(Node parentModule, Object name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

                                } else if (moduleNodeLocalName.equals("alt-dd")) {
                                    assert module != null;
                                    module.setAltDeployDescriptor(moduleNode.text());
                                } else {
                                    module = new DefaultEarModule(moduleNode.text());
                                    modules.add(module);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top