XML Slide and StyleSheet
Here is the XML with StyleSheet Slide of Miss Aisha.
Click Here to Download
Downlaod Lecture of APTECH ACCP PRO Course Batch of Aptech NN 1207G1..
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package gettersetter;
/**
*
* @author asp
*/
public class Student {
int id,age;
String name;
public int getid(){
return id;
}
public String getname(){
return name;
}
public int getage(){
return age;
}
public void setid(int i){
id=i;
}
public void setname(String n){
name=n;
}
public void setage(int a){
age=a;
}
}