Class.java

Class.java
package Instruction2;

public class Class {
    String nazwa_grupy, max_studentow;
    Student[] lista_studentow;

    void addStudent(Student student){

    }

    void addPoints(Student student, double pkt){

    }

    void getStudent(Student student){

    }
    void changeCondition(Student student, StudentCondition condition){

    }

    void removePoints(Student student, double pkt){

    }

    String search(String lastName){
        return "";
    }

    String searchPartial(String fragment){
        return "";
    }

    int countByCondition(StudentCondition condition){
        return 0;
    }

    // Student summary(){}

    // Student sortByName(){}

    // Student sortByPoints(){}

    // void max(){}
}