Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setPosition (0.23 sec)

  1. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

        }
    
        public NodePointer getNodePointer() {
            if (position == 0) {
                setPosition(1);
            }
            return (attribute == null) ? null : new Xpp3DomAttributePointer(parent, attribute);
        }
    
        public int getPosition() {
            return position;
        }
    
        public boolean setPosition(int position) {
            this.position = position;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

            }
        }
    
        public NodePointer getNodePointer() {
            if (position == 0) {
                setPosition(1);
            }
            return (child == null) ? null : new Xpp3DomNodePointer(parent, child);
        }
    
        public int getPosition() {
            return position;
        }
    
        public boolean setPosition(int position) {
            this.position = position;
            filterChildren(position);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.5K bytes
    - Viewed (0)
Back to top