This commit is contained in:
parent
7de3008bd0
commit
db3678bb2d
5 changed files with 90 additions and 0 deletions
14
Winda/src/Logic/AlgorytmGoraDol.java
Normal file
14
Winda/src/Logic/AlgorytmGoraDol.java
Normal 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 {
|
||||||
|
|
||||||
|
}
|
14
Winda/src/Logic/AlgorytmNajblizszeWezwanie.java
Normal file
14
Winda/src/Logic/AlgorytmNajblizszeWezwanie.java
Normal 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{
|
||||||
|
|
||||||
|
}
|
14
Winda/src/Logic/IAlgorytm.java
Normal file
14
Winda/src/Logic/IAlgorytm.java
Normal 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 {
|
||||||
|
|
||||||
|
}
|
34
Winda/src/Logic/Pasazer.java
Normal file
34
Winda/src/Logic/Pasazer.java
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
14
Winda/src/Logic/Winda.java
Normal file
14
Winda/src/Logic/Winda.java
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue