/* * Copyright (C) 2006, 2007 Dennis Hunziker, Ueli Kistler * Copyright (C) 2007 Reto Schuettel, Robin Stocker * * IFS Institute for Software, HSR Rapperswil, Switzerland * */ package org.python.pydev.refactoring.core.model.generateproperties; import java.util.ArrayList; import java.util.List; import org.python.pydev.refactoring.ast.adapters.INodeAdapter; import org.python.pydev.refactoring.ast.adapters.PropertyTextAdapter; import org.python.pydev.refactoring.core.model.tree.ITreeNode; import org.python.pydev.refactoring.core.model.tree.TreeNodeSimple; import org.python.pydev.refactoring.messages.Messages; public class TreeAttributeNode extends TreeNodeSimple<INodeAdapter> { public TreeAttributeNode(ITreeNode parent, INodeAdapter adapter) { super(parent, adapter); } @Override public Object[] getChildren() { List<ITreeNode> children = new ArrayList<ITreeNode>(); children.add(new TreeNodeSimple<PropertyTextAdapter>(this, new PropertyTextAdapter(PropertyTextAdapter.GETTER, Messages.generatePropertiesGetter))); children.add(new TreeNodeSimple<PropertyTextAdapter>(this, new PropertyTextAdapter(PropertyTextAdapter.SETTER, Messages.generatePropertiesSetter))); children.add(new TreeNodeSimple<PropertyTextAdapter>(this, new PropertyTextAdapter(PropertyTextAdapter.DELETE, Messages.generatePropertiesDelete))); children.add(new TreeNodeSimple<PropertyTextAdapter>(this, new PropertyTextAdapter( PropertyTextAdapter.DOCSTRING, Messages.generatePropertiesDocString))); return children.toArray(); } @Override public String getImageName() { return ITreeNode.NODE_ATTRIBUTE; } }