Home | History | Annotate | Download | only in scenegraph

Lines Matching defs:Component

34     public static abstract class Component {
40 Component(int type, String name) {
74 public static class TranslateComponent extends Component {
90 public static class RotateComponent extends Component {
114 public static class ScaleComponent extends Component {
131 public ArrayList<Component> mTransformComponents;
134 mTransformComponents = new ArrayList<Component>();
155 public void addComponent(Component c) {
165 public void setComponent(int index, Component c) {
170 throw new IllegalArgumentException("Invalid component index");
178 void updateRSComponent(Component c) {
202 Component ith = mTransformComponents.get(i);