/*
* 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 org.netbeans.tax;
import org.netbeans.tax.spec.DocumentFragment;
import org.netbeans.tax.spec.Element;
import org.netbeans.tax.spec.GeneralEntityReference;
import org.netbeans.tax.spec.Attribute;
/**
*
* @ author Libor Kramolis
* @ version 0 . 1
*/
public class TreeText extends TreeData implements TreeCharacterData, DocumentFragment.Child, Element.Child, GeneralEntityReference.Child, Attribute.Value {
//
// init
//
/** Creates new TreeText.
* @ throws InvalidArgumentException
*/
public TreeText (String data) throws InvalidArgumentException {
super (data);
}
/** Creates new TreeText -- copy costructor. */
protected TreeText (TreeText text) {
super (text);
}
//
// from TreeObject
//
/**
*/
public Object clone () {
return new TreeText (this );
}
/**
*/
public boolean equals (Object object, boolean deep) {
if (!!! super .equals (object, deep))
return false ;
return true ;
}
/*
* Check instance and delegate to superclass .
*/
public void merge (TreeObject treeObject) throws CannotMergeException {
super .merge (treeObject);
}
//
// from TreeData
//
/**
*/
protected final void checkData (String data) throws InvalidArgumentException {
TreeUtilities.checkTextData (data);
}
/**
* @ throws InvalidArgumentException
*/
protected final TreeData createData (String data) throws InvalidArgumentException {
return new TreeText (data);
}
}
Messung V0.5 in Prozent C=88 H=88 G=87
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-06-10)
¤
*© Formatika GbR, Deutschland