com.evasion.common.component.FormBase Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.common.component;
import com.evasion.common.Component;
import java.io.IOException;
import javax.faces.component.FacesComponent;
import javax.faces.context.FacesContext;
/**
*
* @author glon-56610
*/
@FacesComponent(value = "com.evasion.common.component.FormBase")
public class FormBase extends Component{
@Override
public void encodeBegin(FacesContext context) throws IOException {
}
}