You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
338 B

class BSRRE1D_file : PhysicalFile
{
int getFoo() {
return(m_foo);
}
void setFoo(int foo) {
m_foo = foo;
}
public BSRRE1D_file() {
this.addFormatName("BSRRE1DF");
}
private int m_foo;
public void xxx() {
ahoj();
} // comment
public void yyy() {
ahoj();
}
/* comment 2 */
public void xxx() {
ahoj();
}
}