Home | History | Annotate | Download | only in filters

Lines Matching defs:representation

47         FilterFxRepresentation representation = new FilterFxRepresentation(getName(),0,0);
48 copyAllParameters(representation);
49 return representation;
53 protected void copyAllParameters(FilterRepresentation representation) {
54 super.copyAllParameters(representation);
55 representation.useParametersFrom(this);
61 FilterFxRepresentation representation = (FilterFxRepresentation) a;
62 setName(representation.getName());
63 setSerializationName(representation.getSerializationName());
64 setBitmapResource(representation.getBitmapResource());
65 setNameResource(representation.getNameResource());
70 public boolean equals(FilterRepresentation representation) {
71 if (!super.equals(representation)) {
74 if (representation instanceof FilterFxRepresentation) {
75 FilterFxRepresentation fx = (FilterFxRepresentation) representation;
85 public boolean same(FilterRepresentation representation) {
86 if (!super.same(representation)) {
89 return equals(representation);