Home | History | Annotate | Download | only in filters

Lines Matching defs:representation

41         FilterImageBorderRepresentation representation =
43 copyAllParameters(representation);
44 return representation;
48 protected void copyAllParameters(FilterRepresentation representation) {
49 super.copyAllParameters(representation);
50 representation.useParametersFrom(this);
55 FilterImageBorderRepresentation representation = (FilterImageBorderRepresentation) a;
56 setName(representation.getName());
57 setDrawableResource(representation.getDrawableResource());
62 public boolean equals(FilterRepresentation representation) {
63 if (!super.equals(representation)) {
66 if (representation instanceof FilterImageBorderRepresentation) {
67 FilterImageBorderRepresentation border = (FilterImageBorderRepresentation) representation;