This commit is contained in:
Tomasz Piechucki 2011-03-22 17:44:56 +00:00
parent 7de3008bd0
commit db3678bb2d
5 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Logic;
/**
*
* @author Tomek
*/
public class AlgorytmGoraDol implements IAlgorytm {
}

View file

@ -0,0 +1,14 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Logic;
/**
*
* @author Tomek
*/
public class AlgorytmNajblizszeWezwanie implements IAlgorytm{
}

View file

@ -0,0 +1,14 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Logic;
/**
*
* @author Tomek
*/
public interface IAlgorytm {
}

View file

@ -0,0 +1,34 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Logic;
/**
*
* @author Tomek
*/
public class Pasazer {
private int start;
private int stop;
private int name;
public Pasazer(int name, int start, int stop) {
this.name = name;
this.start = start;
this.stop = stop;
}
public int GetName() {
return this.name;
}
public int GetStart() {
return this.start;
}
public int GetStop() {
return this.stop;
}
}

View file

@ -0,0 +1,14 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Logic;
/**
*
* @author Tomek
*/
public class Winda {
private IAlgorytm AlgorytmWindy;
}