blob: ae90faf49682c3465afece3a87cbf78c514d47fb [file] [log] [blame]
/*
* 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.ParameterEntityReference;
import org.netbeans.tax.spec.DocumentType;
import org.netbeans.tax.spec.DTD;
import org.netbeans.tax.spec.ConditionalSection;
/**
*
* @author Libor Kramolis
* @version 0.1
*/
public class TreeParameterEntityReference extends TreeEntityReference implements DocumentType.Child, DTD.Child, ParameterEntityReference.Child, ConditionalSection.Child {
//
// init
//
/** Creates new TreeParameterEntityReference.
* @throws InvalidArgumentException
*/
public TreeParameterEntityReference (String name) throws InvalidArgumentException {
super (name);
}
/** Creates new TreeParameterEntityReference -- copy constructor. */
protected TreeParameterEntityReference (TreeParameterEntityReference parameterEntityReference, boolean deep) {
super (parameterEntityReference, deep);
}
//
// from TreeObject
//
/**
*/
public Object clone (boolean deep) {
return new TreeParameterEntityReference (this, deep);
}
/**
*/
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);
}
//
// itself
//
/**
*/
protected final void checkName (String name) throws InvalidArgumentException {
TreeUtilities.checkParameterEntityReferenceName (name);
}
//
// TreeObjectList.ContentManager
//
/**
*/
protected TreeObjectList.ContentManager createChildListContentManager () {
return new ChildListContentManager ();
}
/**
*
*/
protected class ChildListContentManager extends TreeEntityReference.ChildListContentManager {
/**
*/
public TreeNode getOwnerNode () {
return TreeParameterEntityReference.this;
}
/**
*/
public void checkAssignableObject (Object obj) {
super.checkAssignableObject (obj);
checkAssignableClass (ParameterEntityReference.Child.class, obj);
}
} // end: class ChildListContentManager
}