Home | History | Annotate | Download | only in filters

Lines Matching defs:representation

52         FilterBasicRepresentation representation = new FilterBasicRepresentation(getName(),0,0,0);
53 copyAllParameters(representation);
54 return representation;
58 protected void copyAllParameters(FilterRepresentation representation) {
59 super.copyAllParameters(representation);
60 representation.useParametersFrom(this);
66 FilterBasicRepresentation representation = (FilterBasicRepresentation) a;
67 setMinimum(representation.getMinimum());
68 setMaximum(representation.getMaximum());
69 setValue(representation.getValue());
70 setDefaultValue(representation.getDefaultValue());
71 setPreviewValue(representation.getPreviewValue());
76 public boolean equals(FilterRepresentation representation) {
77 if (!super.equals(representation)) {
80 if (representation instanceof FilterBasicRepresentation) {
81 FilterBasicRepresentation basic = (FilterBasicRepresentation) representation;