package com.godoro.scope;
import java.io.Serializable;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
@ManagedBean
@ViewScoped
public class ViewBean implements Serializable{
private int integerProperty;
private String stringProperty;
public ViewBean() {
integerProperty=6;
stringProperty="Egitim";
}
public int getIntegerProperty() {
return integerProperty;
}
public void setIntegerProperty(int integerProperty) {
this.integerProperty = integerProperty;
}
public String getStringProperty() {
return stringProperty;
}
public void setStringProperty(String stringProperty) {
this.stringProperty = stringProperty;
}
public void perform(){
integerProperty++;
System.out.println("İstek Tanesi Tamsayı "+integerProperty+" Katar "+stringProperty);
}
}
Dosyayı İndir