< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/DOMNormalizer.java

Print this page

        

*** 1,8 **** /* * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. ! * @LastModified: Oct 2017 */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. --- 1,8 ---- /* * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. ! * @LastModified: Nov 2017 */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership.
*** 1645,1655 **** public boolean isSpecified(int attrIndex){ return((Attr)fAttributes.getItem(attrIndex)).getSpecified(); } public Augmentations getAugmentations (int attributeIndex){ ! return(Augmentations)fAugmentations.elementAt(attributeIndex); } public Augmentations getAugmentations (String uri, String localPart){ // REVISIT: implement return null; --- 1645,1655 ---- public boolean isSpecified(int attrIndex){ return((Attr)fAttributes.getItem(attrIndex)).getSpecified(); } public Augmentations getAugmentations (int attributeIndex){ ! return fAugmentations.elementAt(attributeIndex); } public Augmentations getAugmentations (String uri, String localPart){ // REVISIT: implement return null;
< prev index next >