file_id
stringlengths
5
10
content
stringlengths
57
33.1k
repo
stringlengths
8
77
path
stringlengths
6
174
token_length
int64
19
8.19k
original_comment
stringlengths
7
10.6k
comment_type
stringclasses
2 values
detected_lang
stringclasses
1 value
prompt
stringlengths
21
33.1k
3447_9
package san.util; public interface FillArray<T> { // T - zmienna typowa (ang. type-variable) // W miejsce T (zmiennej typowej) można "podstawić" różne typy (klasy) // W Javie mogą to być WYŁĄCZNIE klasy, natomiast w innych językach (Haskell, C++) // mogą się tam pojawiać również typy proste, int (C++), Int (Hask...
kongra/SAN
2021 letni/JiPP wykład (dzienne)/src/san/util/FillArray.java
285
// FillArray jest przykładem TYPU GENERYCZNEGO
line_comment
pl
package san.util; public interface FillArray<T> { // T - zmienna typowa (ang. type-variable) // W miejsce T (zmiennej typowej) można "podstawić" różne typy (klasy) // W Javie mogą to być WYŁĄCZNIE klasy, natomiast w innych językach (Haskell, C++) // mogą się tam pojawiać również typy proste, int (C++), Int (Hask...
3448_1
package jira.For.Android.Connector; import java.util.Vector; import jira.For.Android.DataTypes.Project; import org.ksoap2.serialization.SoapObject; import com.google.inject.Inject; import com.google.inject.Singleton; import com.jira4android.connectors.utils.KSoapExecutor; import com.jira4android.connectors.utils.So...
tmszdmsk/jira4android
android app/jiraForAndroid/src/jira/For/Android/Connector/ConnectorProjects.java
866
// TODO Trzeba sprawdzić czy rysunek nie jest tym rysunkiem standardowym
line_comment
pl
package jira.For.Android.Connector; import java.util.Vector; import jira.For.Android.DataTypes.Project; import org.ksoap2.serialization.SoapObject; import com.google.inject.Inject; import com.google.inject.Singleton; import com.jira4android.connectors.utils.KSoapExecutor; import com.jira4android.connectors.utils.So...
3448_2
package jira.For.Android.Connector; import java.util.Vector; import jira.For.Android.DataTypes.Project; import org.ksoap2.serialization.SoapObject; import com.google.inject.Inject; import com.google.inject.Singleton; import com.jira4android.connectors.utils.KSoapExecutor; import com.jira4android.connectors.utils.So...
tmszdmsk/jira4android
android app/jiraForAndroid/src/jira/For/Android/Connector/ConnectorProjects.java
866
// albo czy już go nie mamy w pamięci ;) np spr pole id lkub inne info
line_comment
pl
package jira.For.Android.Connector; import java.util.Vector; import jira.For.Android.DataTypes.Project; import org.ksoap2.serialization.SoapObject; import com.google.inject.Inject; import com.google.inject.Singleton; import com.jira4android.connectors.utils.KSoapExecutor; import com.jira4android.connectors.utils.So...
3450_0
import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; public class Computer { private String name; private List<Application> apps; private static Set<Application> allApps = new HashSet<>(); public Computer(String name) { this.name = name;...
Barteck197/PJ-MAS-2
src/Computer.java
301
// Sprawdzamy, czy aplikacja nie została już dodana do jakiegoś komputera
line_comment
pl
import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; public class Computer { private String name; private List<Application> apps; private static Set<Application> allApps = new HashSet<>(); public Computer(String name) { this.name = name;...
3451_1
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * * @author Bartosz Radliński */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński <SUF>*/ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze ...
3451_2
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * działa.(Rozpoznawanie obiektu jako zwierzęcia - typ 0) * * @see Animal.canStand */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - <SUF>*/ class Terrain extends Field { public Terrain(Board scene, String spName) { super(scene); setSpriteName(spName);...
3451_3
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Sprawdzanie czy obiekt terenu jest domem dla zwierzęcia * * @param String s - dom zwierzęcia */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_4
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Klasa równiny - domyślnie nieblokowane */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_5
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Klasa równiny - domyślnie blokowane */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_6
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Klasa równiny - domyślnie nieblokowane */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_7
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Klasa równiny - domyślnie nieblokowane */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_8
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Klasa równiny - domyślnie nieblokowane */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_9
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Klasa padliny dziedzicy po Mammel w celu prostrzego wyświetlnia rozmiaru */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_10
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Padlia stworzona przez gracza. Nie ma potrzeby regulować rozmiaru - można * stworzyć kilka obiektów. Nie blokuje pola. */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_11
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Padlina tworzona przez zwierzę. Nie blokuje pola * * @see Lion * @see Hyena */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3451_12
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
m87/Savanna
sawanna/Terrain.java
1,065
/** * Usuwanie padliny * * @Override */
block_comment
pl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package sawanna; /** * * @author Bartosz Radliński */ /** * Klasa terenu - ustalany typ (Type) tylko w celu kompatybilności ze starym * fragmentem kodu, przy którym nie chciało mi się już kombinować, bo dobrze * d...
3452_0
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
ItsRaelx/UniwersytetMorski
MiNSI/Lab02.java
994
// Stałe i parametry dostępne globalnie
line_comment
pl
import java.util.Random; public class Lab02 { // Stałe i <SUF> private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public static void main(String[] a...
3452_1
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
ItsRaelx/UniwersytetMorski
MiNSI/Lab02.java
994
// dokładność do 3 miejsc po przecinku
line_comment
pl
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do <SUF> private static final Random rand = new Random(); public static void main(Str...
3452_2
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
ItsRaelx/UniwersytetMorski
MiNSI/Lab02.java
994
// Obliczanie liczby bitów
line_comment
pl
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
3452_3
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
ItsRaelx/UniwersytetMorski
MiNSI/Lab02.java
994
// ponieważ przedziały są takie same
line_comment
pl
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
3452_4
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
ItsRaelx/UniwersytetMorski
MiNSI/Lab02.java
994
// Generowanie genotypów już z ograniczeniami
line_comment
pl
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
3452_5
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
ItsRaelx/UniwersytetMorski
MiNSI/Lab02.java
994
// Enkodowanie i dekodowanie wartości
line_comment
pl
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
3452_6
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
ItsRaelx/UniwersytetMorski
MiNSI/Lab02.java
994
// Obliczenie funkcji Rastrigina
line_comment
pl
import java.util.Random; public class Lab02 { // Stałe i parametry dostępne globalnie private static final double A = -5.21; private static final double B = 5.21; private static final int D = 3; // dokładność do 3 miejsc po przecinku private static final Random rand = new Random(); public stat...
3457_0
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
CLARIN-PL/Liner2
g419-corpus/src/main/java/g419/corpus/structure/TokenAttributeIndex.java
951
/** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */
block_comment
pl
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks <SUF>*/ public class TokenAttributeIndex { /** * Tablica zawiera nazwy atrybutów. Pozycja, na...
3457_1
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
CLARIN-PL/Liner2
g419-corpus/src/main/java/g419/corpus/structure/TokenAttributeIndex.java
951
/** * Tablica zawiera nazwy atrybutów. Pozycja, na której znajduje się dany atrybut * jest indeksem tego atrybutu w tablicy atrybutów (klasa Token). */
block_comment
pl
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
3457_2
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
CLARIN-PL/Liner2
g419-corpus/src/main/java/g419/corpus/structure/TokenAttributeIndex.java
951
/** * TODO * Dodaje nowy atrybut do indeksu i zwraca jego numer porządkowy (indeks). * * @param name -- unikalna nazwa atrybutu * @return */
block_comment
pl
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
3457_3
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
CLARIN-PL/Liner2
g419-corpus/src/main/java/g419/corpus/structure/TokenAttributeIndex.java
951
/** * Porównuje z innym obiektem tej klasy. */
block_comment
pl
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
3457_4
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
CLARIN-PL/Liner2
g419-corpus/src/main/java/g419/corpus/structure/TokenAttributeIndex.java
951
/** * Dodaje listę atrybutów pomijając już zadeklarowane. * * @param features */
block_comment
pl
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
3457_5
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
CLARIN-PL/Liner2
g419-corpus/src/main/java/g419/corpus/structure/TokenAttributeIndex.java
951
/** * Zwraca numer porządkowy atrybutu o danej nazwie. * * @param name * @return */
block_comment
pl
package g419.corpus.structure; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.util.Collections; import java.util.List; import java.util.Map; /** * Klasa reprezentuje indeks atrybutów będący mapowaniem nazwy atrybutu na unikalny indeks. * * @author czuk */ public class ...
3458_1
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Referencja na obiekt "Competitions" który jest głównym i nadrzędnym elementem struktury danych w programie */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_2
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Zawody aktualnie wybrane w menadżerze zawodów i wyświetlane w jego głównej tabeli. */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_3
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Pole przechowuje numer kolejny ślizgu w danej konkurencji. Ślizgi są liczone normalnie po programistycznemu, * czyli od zera a nie od jedynki. */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_4
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Wektor przechowywujący referencję do już rozegranych konkurencji */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_5
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Referencja na saneczkarza z którego nastąpiło przeskoczenie poza kolejke */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_6
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Ustawienie na true powoduje że sankarz wskazany jako returnComptr został zamieniony * z pozycji "aktualnie na torze" a nie następnie */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_7
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Referencja do "zawodnika aktualnie na torze" */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_8
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Referencja do zawodnika "następnie" */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_9
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Ustawienie zmiennej na true powoduje że program będzie próbował aktualizować * wyniki online po każdym zakończonym ślizgu */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_10
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Nazwa otwartego bądź zapisanego pliku */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3458_11
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
SP8EBC/MKS_JG
src/pl/jeleniagora/mks/rte/RTE_ST.java
786
/** * Ścieżka katalogu w którym znajduje się otwaty bądź zapisany plik */
block_comment
pl
package pl.jeleniagora.mks.rte; import java.util.Vector; import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import pl.jeleniagora.mks.types.Competition; import pl.jeleniagora.mks.types.Competit...
3459_1
package com.clients; /** * This represents the Client that can write and receive messages and ivs, * as well as can encrypt and decrypt messages (always in CBC mode). * @author Karol */ public interface ChatClient extends DecEncClient, WriteReceiveClient { // nic tu nie ma, bo wszystko już odziedziczone po w...
zdoonio/SecureClient
src/com/clients/ChatClient.java
100
// nic tu nie ma, bo wszystko już odziedziczone po wyższych interfejsach.
line_comment
pl
package com.clients; /** * This represents the Client that can write and receive messages and ivs, * as well as can encrypt and decrypt messages (always in CBC mode). * @author Karol */ public interface ChatClient extends DecEncClient, WriteReceiveClient { // nic tu <SUF> }
3460_0
package com.HighLand; public class MIDI { private String make; private String model; private int year; MIDI (String make, String model, int year) { //this.make = make; jeśli ustawię metodę publiczną set to nie muszę już w konstruktore ustanawiać tych zmiennych, mogę tylko przywołać ta publiczną met...
sewerynstawiarski/Learning-Programming-Academy
KursYouTube/MIDI.java
354
//this.make = make; jeśli ustawię metodę publiczną set to nie muszę już w konstruktore ustanawiać tych zmiennych, mogę tylko przywołać ta publiczną metodę
line_comment
pl
package com.HighLand; public class MIDI { private String make; private String model; private int year; MIDI (String make, String model, int year) { //this.make = <SUF> //this.model = model; //this.year = year; this.setMake(make); this.setModel(model); this.setYear...
3461_0
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
pik08/elkadyplom
src/main/java/elkadyplom/dto/DeclarationDto.java
629
/** * DTO przechowujące dane dot. deklaracji studenta. */
block_comment
pl
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane <SUF>*/ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; /** * Id deklarow...
3461_1
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
pik08/elkadyplom
src/main/java/elkadyplom/dto/DeclarationDto.java
629
/** * Id deklaracji, jeśli jest już ona w bazie. */
block_comment
pl
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli <SUF>*/ private int declarationId; /** * Waga deklaracji. */ private int rank; /** * Id deklarow...
3461_2
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
pik08/elkadyplom
src/main/java/elkadyplom/dto/DeclarationDto.java
629
/** * Waga deklaracji. */
block_comment
pl
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. <SUF>*/ private int rank; ...
3461_3
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
pik08/elkadyplom
src/main/java/elkadyplom/dto/DeclarationDto.java
629
/** * Id deklarowanego tematu. */
block_comment
pl
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
3461_4
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
pik08/elkadyplom
src/main/java/elkadyplom/dto/DeclarationDto.java
629
/** * Tytuł deklarowanego tematu. */
block_comment
pl
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
3461_5
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
pik08/elkadyplom
src/main/java/elkadyplom/dto/DeclarationDto.java
629
/** * Imię i nazwisko promotora danego tematu. */
block_comment
pl
package elkadyplom.dto; import elkadyplom.model.Declaration; /** * DTO przechowujące dane dot. deklaracji studenta. */ public class DeclarationDto { /** * Id deklaracji, jeśli jest już ona w bazie. */ private int declarationId; /** * Waga deklaracji. */ private int rank; ...
3462_1
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//dwie pomocnicze listy do wygenerowania labiryntu
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_2
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//lista nieodwiedzonych punktów w labiryncie do połączenia z odwiedzonymi punktami
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_3
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//lista odwiedzonych i należących już do labiryntu
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_4
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//dodaj co drugi punkt do listy odwiedzonych
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_5
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//wypełnij pustym polem
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_6
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//wylosuj jeden punkt z listy odwiedzonych - początek rozrostu labiryntu
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_7
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//losuj numer od 0 do (liczba elementów na liście nieodwiedzonych)
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_8
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//wyciągnij element o tym numerze z listy
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_9
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//i przepisz go z listy nieodwiedzonych do listy odwiedzonych
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_10
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//połączenie punktów nieodwiedzonych z punktami odwiedzonymi
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_11
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//dopóki są jeszcze nieodwiedzone punkty do połączenia
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_12
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//wybierz pierwszy punkt: wylosuj dowolny punkt z listy nieodwiedzonych
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_13
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//połącz z najbliższym punktem na liście odwiedzonych
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_14
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//wybierz drugi punkt jako wyznaczonego najbliższego sąsiada z listy odwiedzonych
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_15
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//połącz ze sobą wybrane 2 punkty: p1, p2
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_16
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//aktualna pozycja w drodze między punktami
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_17
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//idź w prawo
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_18
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//idź w lewo
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_19
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//idź w dół
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_20
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//idź w górę
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3462_21
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
igrek51/coop-pathfinder
coop-pathfinder/src/main/java/igrek/robopath/mazegenerator/MazeGenerator.java
1,358
//przepisz punkt z listy nieodwiedzonych do odwiedzonych
line_comment
pl
package igrek.robopath.mazegenerator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; import java.util.Random; import igrek.robopath.common.Point; import igrek.robopath.common.TileMap; @Component publi...
3465_0
package com.HighLand; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class Ramka extends JFrame implements ActionListener { JButton button; JTextField textField; Ramka () { this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE...
sewerynstawiarski/Learning-Programming-Academy
KursYouTube/Ramka.java
441
//textField.setEditable(false); // sprawia, że tekstu w ramce nie ożna edytować
line_comment
pl
package com.HighLand; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class Ramka extends JFrame implements ActionListener { JButton button; JTextField textField; Ramka () { this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE...
3465_1
package com.HighLand; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class Ramka extends JFrame implements ActionListener { JButton button; JTextField textField; Ramka () { this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE...
sewerynstawiarski/Learning-Programming-Academy
KursYouTube/Ramka.java
441
// dzieki tym linijkom, po wprowadzeniu jednej danej nie mogą już nic więcej wprowadzić
line_comment
pl
package com.HighLand; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class Ramka extends JFrame implements ActionListener { JButton button; JTextField textField; Ramka () { this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE...
3466_0
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
Conqave/nurikabe
src/Nurikabe/Hint.java
524
/** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */
block_comment
pl
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza <SUF>*/ private byte[][] boardSet; private Game game1; /** * * Konstruktor klasy, definiuje tablicę, którą z...
3466_1
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
Conqave/nurikabe
src/Nurikabe/Hint.java
524
/** * * Konstruktor klasy, definiuje tablicę, którą zaznaczył użytkownik. */
block_comment
pl
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
3466_2
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
Conqave/nurikabe
src/Nurikabe/Hint.java
524
/** * Funkcja odpowiedzialna za załadowanie planszy z odpowiedziami. * */
block_comment
pl
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
3466_3
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
Conqave/nurikabe
src/Nurikabe/Hint.java
524
/** * @return Lista punktów z poprawnymi rozwiązaniami. */
block_comment
pl
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
3466_4
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
Conqave/nurikabe
src/Nurikabe/Hint.java
524
/** * @return Losuje poprawną odpowiedź, z przedziału, który pozostał nie zaznaczony przez użytownika. */
block_comment
pl
package Nurikabe; import java.awt.*; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Random; public class Hint { /** * @param boardSet Plansza z zdefiniowana już przez użytkokwanika. */ private byte[][] boardSet; private Game game1; /** * * Konst...
3469_0
package stdos.Filesystem; import stdos.Semaphore.JPmetody; import java.util.Vector; public class Pliki extends Plik{ public static Vector<Plik> Files = new Vector<>(); public static Vector<Plik> Open = new Vector<>(); public Pliki(String nazwa) { super(nazwa); } public Pliki() { } ...
MnichPawel/stdos
Gotowy_system/STD_OS/src/stdos/Filesystem/Pliki.java
1,203
//if (czyPotw(nazwa)) {
line_comment
pl
package stdos.Filesystem; import stdos.Semaphore.JPmetody; import java.util.Vector; public class Pliki extends Plik{ public static Vector<Plik> Files = new Vector<>(); public static Vector<Plik> Open = new Vector<>(); public Pliki(String nazwa) { super(nazwa); } public Pliki() { } ...
3469_1
package stdos.Filesystem; import stdos.Semaphore.JPmetody; import java.util.Vector; public class Pliki extends Plik{ public static Vector<Plik> Files = new Vector<>(); public static Vector<Plik> Open = new Vector<>(); public Pliki(String nazwa) { super(nazwa); } public Pliki() { } ...
MnichPawel/stdos
Gotowy_system/STD_OS/src/stdos/Filesystem/Pliki.java
1,203
//System.out.println("Plik " + nazwa + " nie jest otwarty");
line_comment
pl
package stdos.Filesystem; import stdos.Semaphore.JPmetody; import java.util.Vector; public class Pliki extends Plik{ public static Vector<Plik> Files = new Vector<>(); public static Vector<Plik> Open = new Vector<>(); public Pliki(String nazwa) { super(nazwa); } public Pliki() { } ...
3471_2
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
// lista wszystkich abonentow
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_7
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
// dostajemy naszego pracownika, ktory wyslal SMS'a
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_8
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//worker chce zaczac monitorowac czas pracy
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_9
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//jezeli wszystko git, zaczynamy liczenie czasu od momentu request'a
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_10
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//sprawdzamy lokalizacje - nie mamy zwrotki od funkcji, trzeba dorobic!
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_11
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//Zatrzymanie rejestrowania czasu pracy przez pracownika
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_12
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
/* 15 minut przerwy zacznij rejestrowac czas pracy po czasie przerwy - sprawdzajac najpierw lokalizacje, czy pracownik jest w pracy jezeli nie ma go w pracy po przerwie, zakoncz prace */
block_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_13
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
/*pytanie, jak po tych "15 minutach" sprawdzic, czy pracownik wrocil do firmy, bo interesuje nas jego polozenie, czy robimy thread.sleep i czekamy, czy wychodzimy stad i za jakis czas powrot do sprawdzenia? */
block_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_14
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//sprawdzamy lokalizacje - nie mamy zwrotki od funkcji, trzeba dorobic!
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_15
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//jezeli jest w robocie, to nic sie nie dzieje, czas leci sobie dalej
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_16
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//jezeli patalacha nie ma w robocie, to stopujemy czas pracy i czekamy az sie pojawi, zeby mu go wystartowac
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_17
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//TODO: obsluga pauzowania
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_18
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//musimy zwrocic informacje od klasy Worker ile czasu zostalo do konca pracy, czy to procentowo, czy w godzinach
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_19
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//zapytanie o lokalizację danego numeru
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_20
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//sprawdzamy czy numer danej osoby ma uprawnienia
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_21
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
// TODO: rzucamy wyjatek, ale gdzie go zlapiemy? ;)
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3471_22
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
SebastianFiecko/waip
Feature.java
5,669
//TODO: funkcja ta musi jakos zwracac, czy uzytkownik jest w pracy, czy nie, aby mozna bylo egzekwowac czas pracy
line_comment
pl
/* * ************************************************************************** * * * * * Ericsson hereby grants to the user a royalty-free, irrevocable, * * * worldwide, nonexclusive, paid-up license to copy, display, perform, * ...
3472_0
package Sort; import java.util.Arrays; public class Merge { public static int[] sort(int[] arr, int len) { if (len > 1) { int m = len / 2; int[] arr1 = split(arr, 0, m); int[] arr2 = split(arr, m, len); return merge(sort(arr1, m), m, sor...
itischrisd/itis-ASD
src/Sort/Merge.java
1,068
/* ZŁOŻONOŚĆ O.D.: porównanie dwóch elementów ciągu R.D.: długość ciągu arr W(n) = O(nlog(n)) A(n) = O(nlog(n)) S(n) = O(n) (nie O(nlog(n)), ponieważ podtablice nie istnieją równocześnie, są zwalniane po wywołaniu rek.) POPRAWNOŚĆ Właśność stopu: Wywołania rekurencyjne zatrzymuj...
block_comment
pl
package Sort; import java.util.Arrays; public class Merge { public static int[] sort(int[] arr, int len) { if (len > 1) { int m = len / 2; int[] arr1 = split(arr, 0, m); int[] arr2 = split(arr, m, len); return merge(sort(arr1, m), m, sor...
3480_0
package pl.waw.sgh; public class Blocks { static int d = 10; // d moge użyc wszędzie tu i w innych klasach jak napiszę pl.waw.sgh.Blocks.d public static void main (String[] args) { int a = 5; { int b = 6; System.out.println(a); System.out.println(b); ...
BeataWalo/CP_summer_2020
src/pl/waw/sgh/Blocks.java
152
// d moge użyc wszędzie tu i w innych klasach jak napiszę pl.waw.sgh.Blocks.d
line_comment
pl
package pl.waw.sgh; public class Blocks { static int d = 10; // d moge <SUF> public static void main (String[] args) { int a = 5; { int b = 6; System.out.println(a); System.out.println(b); } // tu już nie mogę użyć b, bo jest poza nawiasa...
3480_1
package pl.waw.sgh; public class Blocks { static int d = 10; // d moge użyc wszędzie tu i w innych klasach jak napiszę pl.waw.sgh.Blocks.d public static void main (String[] args) { int a = 5; { int b = 6; System.out.println(a); System.out.println(b); ...
BeataWalo/CP_summer_2020
src/pl/waw/sgh/Blocks.java
152
// tu już nie mogę użyć b, bo jest poza nawiasami, gdzie opisałam b
line_comment
pl
package pl.waw.sgh; public class Blocks { static int d = 10; // d moge użyc wszędzie tu i w innych klasach jak napiszę pl.waw.sgh.Blocks.d public static void main (String[] args) { int a = 5; { int b = 6; System.out.println(a); System.out.println(b); ...
3482_1
package spirites; import javax.swing.*; import java.awt.*; public interface Spirites { /** * Rysuje postać * @param g * @param parent */ void draw(Graphics g, JPanel parent); /** * Przechodzi do następnej klatki */ void next(); /** * Czy już zniknął z ekranu ...
Mateoswiatek/JavaZombieGame
src/spirites/Spirites.java
337
/** * Przechodzi do następnej klatki */
block_comment
pl
package spirites; import javax.swing.*; import java.awt.*; public interface Spirites { /** * Rysuje postać * @param g * @param parent */ void draw(Graphics g, JPanel parent); /** * Przechodzi do następnej <SUF>*/ void next(); /** * Czy już zniknął z ekranu * @r...
3482_2
package spirites; import javax.swing.*; import java.awt.*; public interface Spirites { /** * Rysuje postać * @param g * @param parent */ void draw(Graphics g, JPanel parent); /** * Przechodzi do następnej klatki */ void next(); /** * Czy już zniknął z ekranu ...
Mateoswiatek/JavaZombieGame
src/spirites/Spirites.java
337
/** * Czy już zniknął z ekranu * @return */
block_comment
pl
package spirites; import javax.swing.*; import java.awt.*; public interface Spirites { /** * Rysuje postać * @param g * @param parent */ void draw(Graphics g, JPanel parent); /** * Przechodzi do następnej klatki */ void next(); /** * Czy już zniknął <SUF>*/ ...