src/com/sun/org/apache/xerces/internal/xpointer/ShortHandPointer.java

Print this page

        

*** 1,24 **** /* * reserved comment block * DO NOT REMOVE OR ALTER! */ /* ! * Copyright 2005 The Apache Software Foundation. ! * ! * Licensed under the Apache License, Version 2.0 (the "License"); ! * you may not use this file except in compliance with the License. ! * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.sun.org.apache.xerces.internal.xpointer; import com.sun.org.apache.xerces.internal.impl.Constants; import com.sun.org.apache.xerces.internal.impl.dv.XSSimpleType; import com.sun.org.apache.xerces.internal.util.SymbolTable; --- 1,26 ---- /* * reserved comment block * DO NOT REMOVE OR ALTER! */ /* ! * 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. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ + package com.sun.org.apache.xerces.internal.xpointer; import com.sun.org.apache.xerces.internal.impl.Constants; import com.sun.org.apache.xerces.internal.impl.dv.XSSimpleType; import com.sun.org.apache.xerces.internal.util.SymbolTable;
*** 35,47 **** * ShortHand Pointers. It identifies at most one element in the * resource's information set; specifically, the first one (if any) * in document order that has a matching NCName as an identifier. * </p> * - * */ ! class ShortHandPointer implements XPointerPart { // The name of the ShortHand pointer private String fShortHandPointer; // The name of the ShortHand pointer --- 37,48 ---- * ShortHand Pointers. It identifies at most one element in the * resource's information set; specifically, the first one (if any) * in document order that has a matching NCName as an identifier. * </p> * */ ! final class ShortHandPointer implements XPointerPart { // The name of the ShortHand pointer private String fShortHandPointer; // The name of the ShortHand pointer
*** 259,269 **** /** * * @see com.sun.org.apache.xerces.internal.xpointer.XPointerPart#isChildFragmentResolved() */ public boolean isChildFragmentResolved() { ! return fIsFragmentResolved & ( fMatchingChildCount > 0); } /** * Returns the name of the ShortHand pointer * --- 260,270 ---- /** * * @see com.sun.org.apache.xerces.internal.xpointer.XPointerPart#isChildFragmentResolved() */ public boolean isChildFragmentResolved() { ! return fIsFragmentResolved && ( fMatchingChildCount > 0); } /** * Returns the name of the ShortHand pointer *