blob: cb9e283277ea436f384b9eb837e075b152555979 [file] [log] [blame]
package org.apache.myfaces.tobago.facelets;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import com.sun.facelets.FaceletContext;
import com.sun.facelets.el.ELAdaptor;
import com.sun.facelets.tag.MetaRule;
import com.sun.facelets.tag.Metadata;
import com.sun.facelets.tag.MetadataTarget;
import com.sun.facelets.tag.TagAttribute;
import org.apache.myfaces.tobago.component.Attributes;
import org.apache.myfaces.tobago.component.DeprecatedDimension;
import org.apache.myfaces.tobago.layout.Measure;
import javax.el.ValueExpression;
import javax.faces.component.UIComponent;
public class DeprecatedDimensionRule extends MetaRule {
public static final DeprecatedDimensionRule INSTANCE = new DeprecatedDimensionRule();
public Metadata applyRule(String name, TagAttribute attribute, MetadataTarget metadataTarget) {
if (Attributes.WIDTH.equals(name)) {
return new WidthMapper(attribute);
}
if (Attributes.HEIGHT.equals(name)) {
return new HeightMapper(attribute);
}
return null;
}
static final class WidthMapper extends Metadata {
private final TagAttribute attribute;
WidthMapper(TagAttribute attribute) {
this.attribute = attribute;
}
public void applyMetadata(FaceletContext ctx, Object instance) {
if (attribute.isLiteral()) {
((DeprecatedDimension) instance).setWidth(Measure.parse(attribute.getValue()));
} else {
ValueExpression expression = attribute.getValueExpression(ctx, Object.class);
ELAdaptor.setExpression((UIComponent) instance, Attributes.WIDTH, expression);
}
}
}
static final class HeightMapper extends Metadata {
private final TagAttribute attribute;
HeightMapper(TagAttribute attribute) {
this.attribute = attribute;
}
public void applyMetadata(FaceletContext ctx, Object instance) {
if (attribute.isLiteral()) {
((DeprecatedDimension) instance).setHeight(Measure.parse(attribute.getValue()));
} else {
ValueExpression expression = attribute.getValueExpression(ctx, Object.class);
ELAdaptor.setExpression((UIComponent) instance, Attributes.HEIGHT, expression);
}
}
}
}