Home | History | Annotate | Download | only in filters

Lines Matching defs:representation

79         FilterColorBorderRepresentation representation =
81 copyAllParameters(representation);
82 return representation;
86 protected void copyAllParameters(FilterRepresentation representation) {
87 super.copyAllParameters(representation);
88 representation.useParametersFrom(this);
93 FilterColorBorderRepresentation representation = (FilterColorBorderRepresentation) a;
94 setName(representation.getName());
95 setColor(representation.getColor());
96 mParamColor.copyPalletFrom(representation.mParamColor);
97 setBorderSize(representation.getBorderSize());
98 setBorderRadius(representation.getBorderRadius());
103 public boolean equals(FilterRepresentation representation) {
104 if (!super.equals(representation)) {
107 if (representation instanceof FilterColorBorderRepresentation) {
108 FilterColorBorderRepresentation border = (FilterColorBorderRepresentation) representation;