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 |
|---|---|---|---|---|---|---|---|---|
2809_1 | package net.loomchild.maligna.ui.console.command;
import java.util.ArrayList;
import java.util.List;
import net.loomchild.maligna.coretypes.Alignment;
import net.loomchild.maligna.model.translation.TranslationModelUtil;
import net.loomchild.maligna.model.vocabulary.Vocabulary;
import net.loomchild.maligna.model.vocab... | loomchild/maligna | maligna-ui/src/main/java/net/loomchild/maligna/ui/console/command/ModelCommand.java | 1,106 | //Prosty algorytm tokenizujący dlatego że wejście powinno być już | line_comment | pl | package net.loomchild.maligna.ui.console.command;
import java.util.ArrayList;
import java.util.List;
import net.loomchild.maligna.coretypes.Alignment;
import net.loomchild.maligna.model.translation.TranslationModelUtil;
import net.loomchild.maligna.model.vocabulary.Vocabulary;
import net.loomchild.maligna.model.vocab... |
2809_2 | package net.loomchild.maligna.ui.console.command;
import java.util.ArrayList;
import java.util.List;
import net.loomchild.maligna.coretypes.Alignment;
import net.loomchild.maligna.model.translation.TranslationModelUtil;
import net.loomchild.maligna.model.vocabulary.Vocabulary;
import net.loomchild.maligna.model.vocab... | loomchild/maligna | maligna-ui/src/main/java/net/loomchild/maligna/ui/console/command/ModelCommand.java | 1,106 | //stokenizowane - tokeny rozdzielone spacją. | line_comment | pl | package net.loomchild.maligna.ui.console.command;
import java.util.ArrayList;
import java.util.List;
import net.loomchild.maligna.coretypes.Alignment;
import net.loomchild.maligna.model.translation.TranslationModelUtil;
import net.loomchild.maligna.model.vocabulary.Vocabulary;
import net.loomchild.maligna.model.vocab... |
2809_3 | package net.loomchild.maligna.ui.console.command;
import java.util.ArrayList;
import java.util.List;
import net.loomchild.maligna.coretypes.Alignment;
import net.loomchild.maligna.model.translation.TranslationModelUtil;
import net.loomchild.maligna.model.vocabulary.Vocabulary;
import net.loomchild.maligna.model.vocab... | loomchild/maligna | maligna-ui/src/main/java/net/loomchild/maligna/ui/console/command/ModelCommand.java | 1,106 | //TODO: Czy dobrze? nie może być tokenów ze spacją w środku. | line_comment | pl | package net.loomchild.maligna.ui.console.command;
import java.util.ArrayList;
import java.util.List;
import net.loomchild.maligna.coretypes.Alignment;
import net.loomchild.maligna.model.translation.TranslationModelUtil;
import net.loomchild.maligna.model.vocabulary.Vocabulary;
import net.loomchild.maligna.model.vocab... |
2810_1 | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... | MnichPawel/stdos | Gotowy_system/STD_OS/src/stdos/CPU/PriorityList.java | 1,283 | /*Iteruje od najwyzszego priorytetu przez tablice bool, w momencie gdy znajdzie niepusta kolejke,
zwraca pierwszy element*/ | block_comment | pl | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... |
2810_2 | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... | MnichPawel/stdos | Gotowy_system/STD_OS/src/stdos/CPU/PriorityList.java | 1,283 | /*Dodaje proces p1 do odpowiedniego miejsca w tablicy kolejek. Sprawdza czy nie dany element nie znajduje sie
w kolejce oraz czy nie jest to proces o zerowym priorytecie*/ | block_comment | pl | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... |
2810_3 | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... | MnichPawel/stdos | Gotowy_system/STD_OS/src/stdos/CPU/PriorityList.java | 1,283 | /*Usuwa proces z tablicy kolejek*/ | block_comment | pl | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... |
2810_4 | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... | MnichPawel/stdos | Gotowy_system/STD_OS/src/stdos/CPU/PriorityList.java | 1,283 | /*Implementacja postarzania procesow. Zwieksza priorytet dynamiczny o 1. Priorytet nie może być większy od 15.*/ | block_comment | pl | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... |
2810_5 | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... | MnichPawel/stdos | Gotowy_system/STD_OS/src/stdos/CPU/PriorityList.java | 1,283 | /*Wyswietla zawartosc wszystkich kolejek*/ | block_comment | pl | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... |
2810_6 | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... | MnichPawel/stdos | Gotowy_system/STD_OS/src/stdos/CPU/PriorityList.java | 1,283 | /*Przenosi PCB procesow do kolejek odpowiadajacych ich priorytetowi dynamicznemu*/ | block_comment | pl | package stdos.CPU;
import stdos.Processes.*;
import java.util.*;
class PriorityList {
private static final int NOP = 15; //Number of Priorities
private ArrayList<PCB>[] priorityList = new ArrayList[NOP];
private boolean[] boolPriorityList = new boolean[NOP];
/*-----------------------------------... |
2823_0 | // Copyright (c) Konrad Grzanek
// Created 24.10.2020
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Program {
private static ExecutorService executorService =
Executors.newFixedThreadPool(10);
public static void main(String... args) {
System.out.print... | kongra/SAN | 2020 zimowy (Fall)/Conc/src/Program.java | 513 | // Copyright (c) Konrad Grzanek | line_comment | pl | // Copyright (c) <SUF>
// Created 24.10.2020
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Program {
private static ExecutorService executorService =
Executors.newFixedThreadPool(10);
public static void main(String... args) {
System.out.println("Zaczy... |
2825_1 | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... | karolk-pwr/WdPO22 | Cheatsheets/psy/Pies.java | 714 | /**
* Domyślny konstruktor
*/ | block_comment | pl | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
<SUF>*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy parame... |
2825_2 | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... | karolk-pwr/WdPO22 | Cheatsheets/psy/Pies.java | 714 | /**
* Konstruktor pobierający trzy parametry
* @param init_wiek wiek psa
* @param init_rasa rasa psa
* @param init_imie imię psa
*/ | block_comment | pl | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy <SUF>*/... |
2825_3 | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... | karolk-pwr/WdPO22 | Cheatsheets/psy/Pies.java | 714 | /**
* Zmień imię psa
* @param nowe_imie imię psa
*/ | block_comment | pl | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... |
2825_4 | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... | karolk-pwr/WdPO22 | Cheatsheets/psy/Pies.java | 714 | /**
* Zmień rasę psa
* @param nowa_rasa rasa psa
*/ | block_comment | pl | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... |
2825_5 | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... | karolk-pwr/WdPO22 | Cheatsheets/psy/Pies.java | 714 | /**
* Zmień wiek pieska
* @param nowy_wiek wiek w latach
* @throws IllegalArgumentException jeśli wiek <= 0
*/ | block_comment | pl | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... |
2825_6 | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... | karolk-pwr/WdPO22 | Cheatsheets/psy/Pies.java | 714 | /**
* Informacje o piesku
*/ | block_comment | pl | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... |
2825_7 | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... | karolk-pwr/WdPO22 | Cheatsheets/psy/Pies.java | 714 | /**
* Metoda do tworzenia psów
* @param init_wiek wiek psa
* @param init_rasa rasa psa
* @param init_imie imię psa
*/ | block_comment | pl | package psy;
/**
* Klasa psy.Pies
*/
public class Pies {
private int wiek;
private String rasa;
private String imie;
/**
* Domyślny konstruktor
*/
public Pies () {
wiek = 1;
rasa = "kundel";
imie = "Azor";
}
/**
* Konstruktor pobierający trzy paramet... |
2828_0 | /*
Tytul: Polimorfizm.
Tresc: Zaprojektuj klase Zwierz oraz klasy potomne Pies i Kot. Obie klasy potomne powinny nadpisywac metode 'odglos()' zdefiniowana w klasie bazowej. Napisz program testujacy te klasy, w ktorym umiescisz obiekty wszystkich trzech klas w jednej liscie i przejdziesz przez wszystkie elementy tej lis... | djeada/Nauka-Programowania | src/java/19_dziedziczenie/zad3/Main.java | 393 | /*
Tytul: Polimorfizm.
Tresc: Zaprojektuj klase Zwierz oraz klasy potomne Pies i Kot. Obie klasy potomne powinny nadpisywac metode 'odglos()' zdefiniowana w klasie bazowej. Napisz program testujacy te klasy, w ktorym umiescisz obiekty wszystkich trzech klas w jednej liscie i przejdziesz przez wszystkie elementy tej lis... | block_comment | pl | /*
Tytul: Polimorfizm.
Tresc: <SUF>*/
import java.util.*;
public class Main {
private static class Zwierz {
public void odglos() {
System.out.print("Jestem zwierzem");
System.out.print("\n");
}
}
private static class Kot extends Zwierz {
@Override
public void odglos() {
Syste... |
2829_0 | import java.util.Random;
import visidia.simulation.process.algorithm.SynchronousAlgorithm;
import visidia.simulation.process.messages.Door;
import visidia.simulation.process.messages.Message;
import visidia.simulation.process.messages.StringMessage;
public class FastMISV2 extends SynchronousAlgorithm {
private stat... | DistributedAlgorithms/TreeColouring | FastMISv2/src/FastMISV2.java | 655 | //Oczekuje na wiadomosci od sasiadow i sprawdzam, czy ktos nie ma tez 0 | line_comment | pl | import java.util.Random;
import visidia.simulation.process.algorithm.SynchronousAlgorithm;
import visidia.simulation.process.messages.Door;
import visidia.simulation.process.messages.Message;
import visidia.simulation.process.messages.StringMessage;
public class FastMISV2 extends SynchronousAlgorithm {
private stat... |
2829_1 | import java.util.Random;
import visidia.simulation.process.algorithm.SynchronousAlgorithm;
import visidia.simulation.process.messages.Door;
import visidia.simulation.process.messages.Message;
import visidia.simulation.process.messages.StringMessage;
public class FastMISV2 extends SynchronousAlgorithm {
private stat... | DistributedAlgorithms/TreeColouring | FastMISv2/src/FastMISV2.java | 655 | //Dodaje sie i blokuje sasiadow w tej rundzie | line_comment | pl | import java.util.Random;
import visidia.simulation.process.algorithm.SynchronousAlgorithm;
import visidia.simulation.process.messages.Door;
import visidia.simulation.process.messages.Message;
import visidia.simulation.process.messages.StringMessage;
public class FastMISV2 extends SynchronousAlgorithm {
private stat... |
2829_2 | import java.util.Random;
import visidia.simulation.process.algorithm.SynchronousAlgorithm;
import visidia.simulation.process.messages.Door;
import visidia.simulation.process.messages.Message;
import visidia.simulation.process.messages.StringMessage;
public class FastMISV2 extends SynchronousAlgorithm {
private stat... | DistributedAlgorithms/TreeColouring | FastMISv2/src/FastMISV2.java | 655 | //Jestem sasiadem, zostaje zablokowany | line_comment | pl | import java.util.Random;
import visidia.simulation.process.algorithm.SynchronousAlgorithm;
import visidia.simulation.process.messages.Door;
import visidia.simulation.process.messages.Message;
import visidia.simulation.process.messages.StringMessage;
public class FastMISV2 extends SynchronousAlgorithm {
private stat... |
2838_0 | /*
* PO Projekt - Karcianka chwilowo bez nazwy
* @author Hurkala Binieda Sanocki
*
*/
package gwint;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.Scre... | prolik123/Gwint | src/main/java/gwint/App.java | 799 | /*
* PO Projekt - Karcianka chwilowo bez nazwy
* @author Hurkala Binieda Sanocki
*
*/ | block_comment | pl | /*
* PO Projekt - <SUF>*/
package gwint;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.Screen;
import javafx.geometry.Rectangle2D;
import javafx.scene.layo... |
2838_5 | /*
* PO Projekt - Karcianka chwilowo bez nazwy
* @author Hurkala Binieda Sanocki
*
*/
package gwint;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.Scre... | prolik123/Gwint | src/main/java/gwint/App.java | 799 | //Talar: ja ... jestem a nie bywam | line_comment | pl | /*
* PO Projekt - Karcianka chwilowo bez nazwy
* @author Hurkala Binieda Sanocki
*
*/
package gwint;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.stage.Scre... |
2839_0 | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... | blostic/BO | BO/src/bo/project/logic/Intersection.java | 1,710 | /*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/ | block_comment | pl | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach <SUF>*/
protected double greenLightTime;
protected double redLightTime;
public Intersection(ArrayList<Road> entryRoads,
ArrayList<Ro... |
2839_1 | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... | blostic/BO | BO/src/bo/project/logic/Intersection.java | 1,710 | /*
* ustalam kt�re ulice maj� jakie �wiat�o w danym momencie zwracam true
* je�li maj� �wiat�a zielone drogi o parzystym modulo 2
*/ | block_comment | pl | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... |
2839_2 | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... | blostic/BO | BO/src/bo/project/logic/Intersection.java | 1,710 | /*
* funkcja losujaca droge w ktora pojedzie samochod
*
* mam 4 natezenia ruchu na ulicach i wiem, z jakiej ulicy wyjezdza samochod
* zapamietuje sobie w talicy traffics natezenia pozostalych, dla tej na
* ktorej jestem daje 0 zapamietuje tez sume natezen pozostalych i indeks
* drogi na ktorej jestem pozni... | block_comment | pl | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... |
2839_3 | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... | blostic/BO | BO/src/bo/project/logic/Intersection.java | 1,710 | // zliczam natezenie sumaryczne i zapisuje | line_comment | pl | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... |
2839_4 | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... | blostic/BO | BO/src/bo/project/logic/Intersection.java | 1,710 | // sobie natezenia drog, dajac za ta | line_comment | pl | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... |
2839_6 | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... | blostic/BO | BO/src/bo/project/logic/Intersection.java | 1,710 | // skrzyzowania - nie robie nic, jest | line_comment | pl | package bo.project.logic;
import java.util.ArrayList;
import java.util.Random;
@SuppressWarnings("serial")
public class Intersection extends Junction {
/*
* czas w sekundach swiecenia swiatla dla ulicy po
* edit: Musi byc double
*/
protected double greenLightTime;
protected double redLightTime;
public I... |
2843_0 | public class LoopsCheck {
//Wypisz liczby z zakresu 1-100 podzielne przez 3
/* public static void main(String[] args){
for(int i = 1; i<100; i++ ){
if(i%3==0);
System.out.println("Jestem podzielna przez 3 : " + i);
}
} */
// odwrócić elementy tablicy [1,3,5,7,0] ... | AniaPasyk/JavaCourse | src/LoopsCheck.java | 348 | //Wypisz liczby z zakresu 1-100 podzielne przez 3 | line_comment | pl | public class LoopsCheck {
//Wypisz liczby <SUF>
/* public static void main(String[] args){
for(int i = 1; i<100; i++ ){
if(i%3==0);
System.out.println("Jestem podzielna przez 3 : " + i);
}
} */
// odwrócić elementy tablicy [1,3,5,7,0] -> [0,7,5,3,1]
public st... |
2843_2 | public class LoopsCheck {
//Wypisz liczby z zakresu 1-100 podzielne przez 3
/* public static void main(String[] args){
for(int i = 1; i<100; i++ ){
if(i%3==0);
System.out.println("Jestem podzielna przez 3 : " + i);
}
} */
// odwrócić elementy tablicy [1,3,5,7,0] ... | AniaPasyk/JavaCourse | src/LoopsCheck.java | 348 | // odwrócić elementy tablicy [1,3,5,7,0] -> [0,7,5,3,1] | line_comment | pl | public class LoopsCheck {
//Wypisz liczby z zakresu 1-100 podzielne przez 3
/* public static void main(String[] args){
for(int i = 1; i<100; i++ ){
if(i%3==0);
System.out.println("Jestem podzielna przez 3 : " + i);
}
} */
// odwrócić elementy <SUF>
public sta... |
2843_3 | public class LoopsCheck {
//Wypisz liczby z zakresu 1-100 podzielne przez 3
/* public static void main(String[] args){
for(int i = 1; i<100; i++ ){
if(i%3==0);
System.out.println("Jestem podzielna przez 3 : " + i);
}
} */
// odwrócić elementy tablicy [1,3,5,7,0] ... | AniaPasyk/JavaCourse | src/LoopsCheck.java | 348 | // dla i=0 będzie miało wartość 1, i=1 to 3 | line_comment | pl | public class LoopsCheck {
//Wypisz liczby z zakresu 1-100 podzielne przez 3
/* public static void main(String[] args){
for(int i = 1; i<100; i++ ){
if(i%3==0);
System.out.println("Jestem podzielna przez 3 : " + i);
}
} */
// odwrócić elementy tablicy [1,3,5,7,0] ... |
2849_0 | public class Instanceof
{
public class Main
{
public static void main(String[] args)
{
Osoba[] osoba = new Osoba[4];
osoba[0] = new Pracownik("Mateusz", "W", 100000);
osoba[1] = new Student("Kamil", "Kzesiu");
for (int i = 0; i < osoba.length; i... | MattiusW/CV | Java/Instanceof.java | 514 | //Sprawdza czy jest egzemplarzem klasy | line_comment | pl | public class Instanceof
{
public class Main
{
public static void main(String[] args)
{
Osoba[] osoba = new Osoba[4];
osoba[0] = new Pracownik("Mateusz", "W", 100000);
osoba[1] = new Student("Kamil", "Kzesiu");
for (int i = 0; i < osoba.length; i... |
2855_0 | public class Auto {
//pola klasy
//tylko jedna klase moge tu na gitthub zmienic bo reszta ciezko tertr
String marka;
String kolor;
String model;
int iloscDrzwi;
int pojemnoscSilnika;
public Auto() {
for(int i=0; i < 20; i++){
System.out.println("abcdefg");
}... | Hatszepsut-Boniface-Senemedar/Java-basics | src/main/java/Auto.java | 358 | //tylko jedna klase moge tu na gitthub zmienic bo reszta ciezko tertr | line_comment | pl | public class Auto {
//pola klasy
//tylko jedna <SUF>
String marka;
String kolor;
String model;
int iloscDrzwi;
int pojemnoscSilnika;
public Auto() {
for(int i=0; i < 20; i++){
System.out.println("abcdefg");
}
}
public Auto(String kolor) {
th... |
2863_1 | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... | awojna/Rseslib | src/main/java/rseslib/qmak/UI/QTableView.java | 7,197 | /**
* Klasa sluzy do wizualizacji tabelki
* @author Krzysztof Mroczek - Klasa inspirowana analogiczna klasa z programu Trickster
* @version 1.0
*/ | block_comment | pl | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... |
2863_6 | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... | awojna/Rseslib | src/main/java/rseslib/qmak/UI/QTableView.java | 7,197 | // sprawdzenie czy to poprawny iQDataTable
| line_comment | pl | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... |
2863_7 | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... | awojna/Rseslib | src/main/java/rseslib/qmak/UI/QTableView.java | 7,197 | // nie jestem pewien
| line_comment | pl | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... |
2863_8 | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... | awojna/Rseslib | src/main/java/rseslib/qmak/UI/QTableView.java | 7,197 | // na wypadek gdyby takiej wartosci nie bylo w tabeli
| line_comment | pl | /*
* Copyright (C) 2002 - 2024 The Rseslib Contributors
*
* This file is part of Rseslib.
*
* Rseslib is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* ... |
2872_5 | // Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`,
// then press Enter. You can now see whitespace characters in your code.
public class Main2 {
int a =0;
String marka;
String kolor;
String model;
int iloscDrzwi;
int pojemnoscSilnika;
void met(){
}
... | Hatszepsut-Boniface-Senemedar/Java-basics | src/main/java/Main2.java | 780 | // przypisanie wartosci do pola obiektu | line_comment | pl | // Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`,
// then press Enter. You can now see whitespace characters in your code.
public class Main2 {
int a =0;
String marka;
String kolor;
String model;
int iloscDrzwi;
int pojemnoscSilnika;
void met(){
}
... |
2872_6 | // Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`,
// then press Enter. You can now see whitespace characters in your code.
public class Main2 {
int a =0;
String marka;
String kolor;
String model;
int iloscDrzwi;
int pojemnoscSilnika;
void met(){
}
... | Hatszepsut-Boniface-Senemedar/Java-basics | src/main/java/Main2.java | 780 | // odczytanie wartosci pól obiektow | line_comment | pl | // Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`,
// then press Enter. You can now see whitespace characters in your code.
public class Main2 {
int a =0;
String marka;
String kolor;
String model;
int iloscDrzwi;
int pojemnoscSilnika;
void met(){
}
... |
2896_0 | package hidden;
public class VarTypes {
public String instanceVariable = "Jestem zmienną egzemplarza";
public static String classVariable = "Jestem zmienną klasy";
public static void main(String[] args) {
String localVariable = "Jestem zmienną lokalną";
//wyświetla zawartość zmiennej loka... | mmiklas/java | dodatki/src/hidden/VarTypes.java | 190 | //wyświetla zawartość zmiennej lokalnej | line_comment | pl | package hidden;
public class VarTypes {
public String instanceVariable = "Jestem zmienną egzemplarza";
public static String classVariable = "Jestem zmienną klasy";
public static void main(String[] args) {
String localVariable = "Jestem zmienną lokalną";
//wyświetla zawartość <SUF>
... |
2896_1 | package hidden;
public class VarTypes {
public String instanceVariable = "Jestem zmienną egzemplarza";
public static String classVariable = "Jestem zmienną klasy";
public static void main(String[] args) {
String localVariable = "Jestem zmienną lokalną";
//wyświetla zawartość zmiennej loka... | mmiklas/java | dodatki/src/hidden/VarTypes.java | 190 | //wyświetla zawartość zmiennej egzemplarza | line_comment | pl | package hidden;
public class VarTypes {
public String instanceVariable = "Jestem zmienną egzemplarza";
public static String classVariable = "Jestem zmienną klasy";
public static void main(String[] args) {
String localVariable = "Jestem zmienną lokalną";
//wyświetla zawartość zmiennej loka... |
2896_2 | package hidden;
public class VarTypes {
public String instanceVariable = "Jestem zmienną egzemplarza";
public static String classVariable = "Jestem zmienną klasy";
public static void main(String[] args) {
String localVariable = "Jestem zmienną lokalną";
//wyświetla zawartość zmiennej loka... | mmiklas/java | dodatki/src/hidden/VarTypes.java | 190 | //wyświetla zawartość zmiennej klasy | line_comment | pl | package hidden;
public class VarTypes {
public String instanceVariable = "Jestem zmienną egzemplarza";
public static String classVariable = "Jestem zmienną klasy";
public static void main(String[] args) {
String localVariable = "Jestem zmienną lokalną";
//wyświetla zawartość zmiennej loka... |
2901_0 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // Piorytet bazowy (stały) i tymczasowy (zmienny) | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_1 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // Adres procesu w pamieci RAM | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_2 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // Licznik rozkazu programu przydzielonego do procesu | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_3 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // Zmienna pomocna w rarzadzaniu procesorem | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_4 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // Ostatnia przeczytana wiadomosci | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_5 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // Kolejka odebranych wiadomości | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_6 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // Semafor kontrolujący odczytywanie wiadomości | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_7 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // tego nie jestem pewny ale chyba powinno byc jak sie usuwa proces zeby odrazu | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2901_8 | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... | kwitnacy/bigOS | Procesy/Process.java | 3,919 | // zastapic go nowym. | line_comment | pl | package Procesy;
import Processor.Scheduler;
import RAM.Memory;
import Semaphore.Semaphore;
import java.util.ArrayDeque;
import java.util.Queue;
public class Process {
int PID; // Unikatowy idnetyfiaktor
private int AX, BX, CX, DX; // Rejestry
private ... |
2906_3 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package realsquad.web.menagedbean;
import java.io.Serializable;
import java.util.logging.Logger;
import javax.ejb.EJB;
import javax.ejb.EJBException;
import javax.enterprise.context.SessionScoped;
import javax.faces.Fac... | tomekl007/realSquad | src/java/realsquad/web/menagedbean/PlayerBean.java | 417 | //wyszukuje book o wzietym Id | line_comment | pl | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package realsquad.web.menagedbean;
import java.io.Serializable;
import java.util.logging.Logger;
import javax.ejb.EJB;
import javax.ejb.EJBException;
import javax.enterprise.context.SessionScoped;
import javax.faces.Fac... |
2910_0 | import java.time.LocalDateTime;
public class LogicalOperator {
public static void main(String[] args) {
int age = 23;
int dayOfWeek = 4;
if(!(age >= 18 || dayOfWeek == 5)){
System.out.println("Jestem pełnoletni");
}else if(age == 17){
System.out.println("Je... | vallerboy/javastart | src/LogicalOperator.java | 284 | //operatory logiczne: > < >= <= == != ! | line_comment | pl | import java.time.LocalDateTime;
public class LogicalOperator {
public static void main(String[] args) {
int age = 23;
int dayOfWeek = 4;
if(!(age >= 18 || dayOfWeek == 5)){
System.out.println("Jestem pełnoletni");
}else if(age == 17){
System.out.println("Je... |
3115_0 | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia na najbliższy tydzień
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni tygodnia
dane[0][0]="PONIEDZIAŁEK";
dane[... | IBAW4z/task_3 | src/task_3/klasaLemur.java | 921 | //licznik udupienia na najbliższy tydzień
| line_comment | pl | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia <SUF>
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni tygodnia
dane[0][0]="PONIEDZIAŁEK";
dane[1][0]="WTOREK";
... |
3115_1 | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia na najbliższy tydzień
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni tygodnia
dane[0][0]="PONIEDZIAŁEK";
dane[... | IBAW4z/task_3 | src/task_3/klasaLemur.java | 921 | //kategorie: dni tygodnia
| line_comment | pl | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia na najbliższy tydzień
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni <SUF>
dane[0][0]="PONIEDZIAŁEK";
dane[1][0... |
3115_2 | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia na najbliższy tydzień
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni tygodnia
dane[0][0]="PONIEDZIAŁEK";
dane[... | IBAW4z/task_3 | src/task_3/klasaLemur.java | 921 | //wyliczenie stopnia udupienia
| line_comment | pl | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia na najbliższy tydzień
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni tygodnia
dane[0][0]="PONIEDZIAŁEK";
dane[... |
3115_3 | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia na najbliższy tydzień
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni tygodnia
dane[0][0]="PONIEDZIAŁEK";
dane[... | IBAW4z/task_3 | src/task_3/klasaLemur.java | 921 | //skomentowanie stopnia udupienia
| line_comment | pl | package task_3;
import java.util.Scanner;
public class klasaLemur{
//licznik udupienia na najbliższy tydzień
public static void main(String [] args){
String dane[][];
dane = new String[7][3];
Scanner tmpS=new Scanner(System.in);
//kategorie: dni tygodnia
dane[0][0]="PONIEDZIAŁEK";
dane[... |
3117_0 | public class Parent extends Hobo {
public Parent(String name, String gender, String title) {
super(name, gender, title);
setClassName("Dysfunkcyjny rodzic");
setAttackPoints(10);
setItem("bombelek");
}
public void specialAttack(Hobo target) {
System.out.prin... | miron-kwiatkowski/ppo-projekt-grupa-g | projekt/Parent.java | 302 | // Atak specjalny zwiększa obrażenia o 10
| line_comment | pl | public class Parent extends Hobo {
public Parent(String name, String gender, String title) {
super(name, gender, title);
setClassName("Dysfunkcyjny rodzic");
setAttackPoints(10);
setItem("bombelek");
}
public void specialAttack(Hobo target) {
System.out.prin... |
3117_1 | public class Parent extends Hobo {
public Parent(String name, String gender, String title) {
super(name, gender, title);
setClassName("Dysfunkcyjny rodzic");
setAttackPoints(10);
setItem("bombelek");
}
public void specialAttack(Hobo target) {
System.out.prin... | miron-kwiatkowski/ppo-projekt-grupa-g | projekt/Parent.java | 302 | // Odejmuje 10 punktów many po użyciu specjalnego ataku
| line_comment | pl | public class Parent extends Hobo {
public Parent(String name, String gender, String title) {
super(name, gender, title);
setClassName("Dysfunkcyjny rodzic");
setAttackPoints(10);
setItem("bombelek");
}
public void specialAttack(Hobo target) {
System.out.prin... |
3127_2 | package com.example.server.services;
import com.example.server.auth.JwtUtil;
import com.example.server.dto.RoomDto;
import com.example.server.exceptions.UserNotFoundException;
import com.example.server.model.Role;
import com.example.server.model.Room;
import com.example.server.model.User;
import com.example.server.rep... | jzywiecki/io-project | server/src/main/java/com/example/server/services/UserService.java | 833 | //54.166.152.243/login, aby zagłosować.\n" | line_comment | pl | package com.example.server.services;
import com.example.server.auth.JwtUtil;
import com.example.server.dto.RoomDto;
import com.example.server.exceptions.UserNotFoundException;
import com.example.server.model.Role;
import com.example.server.model.Room;
import com.example.server.model.User;
import com.example.server.rep... |
3133_0 | public final class Prosta {
public final double a;
public final double b;
public final double c;
public Prosta(double a, double b, double c) {
this.a = a;
this.b = b;
this.c = c;
}
public static Prosta przesuńProsta(Prosta p, Wektor v) {
// Zmieniamy współczynni... | wojwozniak/university | Kurs Java/figurynopackage/Prosta.java | 548 | // Zmieniamy współczynnik c w równaniu prostej ax + by + c = 0 | line_comment | pl | public final class Prosta {
public final double a;
public final double b;
public final double c;
public Prosta(double a, double b, double c) {
this.a = a;
this.b = b;
this.c = c;
}
public static Prosta przesuńProsta(Prosta p, Wektor v) {
// Zmieniamy współczynni... |
3133_1 | public final class Prosta {
public final double a;
public final double b;
public final double c;
public Prosta(double a, double b, double c) {
this.a = a;
this.b = b;
this.c = c;
}
public static Prosta przesuńProsta(Prosta p, Wektor v) {
// Zmieniamy współczynni... | wojwozniak/university | Kurs Java/figurynopackage/Prosta.java | 548 | // Wzory z tablic maturalnych | line_comment | pl | public final class Prosta {
public final double a;
public final double b;
public final double c;
public Prosta(double a, double b, double c) {
this.a = a;
this.b = b;
this.c = c;
}
public static Prosta przesuńProsta(Prosta p, Wektor v) {
// Zmieniamy współczynni... |
3134_2 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // dialogues[4] = "Niestety, nasze zasoby są ograniczone,\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_3 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // " a sytuacja na zewnątrz... jest daleka od stabilnej.\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_4 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // " Potrzebuję, abyś odzyskał trzy kapsuły z próbkami,\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_5 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // " które zgubiłam na południowej części kampusu. \n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_6 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // "Ta strefa jest silnie zainfekowana, więc będzie to ryzykowne.\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_7 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // " Ale te próbki są niezbędne dla naszych badań."; | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_8 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // dialogues[5] ="Są dokładnie takie jak ten na moim biurku.\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_9 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // " Znajdziesz je prawdopodobnie w miejscach o największym\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_10 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // " stężeniu zakażenia czyli w południowym skrzydle uczelni.\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_11 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // " Bądź bardzo ostrożny. Obszar ten jest pełen zagrożeń\n " + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_12 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // "i trudno przewidzieć, co możesz tam napotkać.\n" + | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_13 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // "Wystarczą 3 próbki."; | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3134_14 | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... | patrykkostecki/JAVA_GAME | MyGame/src/entity/NPC_Kasia.java | 2,251 | // dialogues[6] = "Wracaj z nimi jak najszybciej cały i zdrowy!."; | line_comment | pl | package entity;
import main.GamePanel;
import javax.imageio.ImageIO;
import java.io.IOException;
import java.util.Random;
public class NPC_Kasia extends Entity{
private String dialogues[] = new String[4];
public NPC_Kasia(GamePanel gp){
super(gp);
direction = "standing";
speed = 1... |
3136_0 | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... | MattWroclaw/ZadanieQuizowe | src/main/java/Quiz.java | 1,259 | // przed mixowaniem odpowiedzi, trzeba zapamietac, ta ktora jest poprawna | line_comment | pl | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... |
3136_1 | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... | MattWroclaw/ZadanieQuizowe | src/main/java/Quiz.java | 1,259 | // do mieszania odpowiedzi służy Collections.shuffle(jakaś lista) | line_comment | pl | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... |
3136_2 | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... | MattWroclaw/ZadanieQuizowe | src/main/java/Quiz.java | 1,259 | // Zad.2 w tej metodzie przekazujemy już pojedynczy plik z pytaniami z wybranej wczesniej | line_comment | pl | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... |
3136_4 | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... | MattWroclaw/ZadanieQuizowe | src/main/java/Quiz.java | 1,259 | // System.out.println("Pytanie:" + zadanie.pytanie); | line_comment | pl | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... |
3136_5 | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... | MattWroclaw/ZadanieQuizowe | src/main/java/Quiz.java | 1,259 | // trzeba parsować, bo jak się zrobi nextInt to może być cośtam ze | line_comment | pl | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... |
3136_6 | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... | MattWroclaw/ZadanieQuizowe | src/main/java/Quiz.java | 1,259 | // znakiem końca linii i ogólnie kupa | line_comment | pl | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... |
3136_7 | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... | MattWroclaw/ZadanieQuizowe | src/main/java/Quiz.java | 1,259 | // System.out.println("Odpowiedz: " + odpowiedz); | line_comment | pl | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Quiz {
public static void main(String[] args) throws FileNotFoundException {
File kategoriaPytan = zakresPytan();
Syste... |
3139_3 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // tworzenie nowego obiektu java.util.Random \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_4 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // losowanie liczby z przedziału <0, 4) \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_5 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // jeśli wylosowana liczba jest równa zero \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_6 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // robot idzie na północ \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_7 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // jeśli wylosowana liczba jest równa jeden \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_8 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // robot idzie na wschód \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_9 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // jeśli wylosowana liczba jest równa dwa \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_10 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // robot idzie na południe \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_11 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // jeśli wylosowana liczba jest równa trzy \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_12 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // robot idzie na zachód \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_13 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // zdefiniowanie pola myMessage do przechowywania \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_15 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // przypisanie obiektu message do pola myMessage \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_16 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // aby móc skorzystać z otrzymanych informacji w \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_18 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // jeśli współrzędna y położenia robota jest większa \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_19 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // od zera (tzn robot nie jest przy północnej granicy \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_20 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // planszy) - robot idzie na północ \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
3139_21 | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... | nbartlomiej/JavaWars | src/java/javawars/client/pages/Introduction.java | 6,784 | // jeśli współrzędna x położenia robota jest większa \n" + | line_comment | pl | /*
* JavaWars - browser game that teaches Java
* Copyright (C) 2008-2009 Bartlomiej N (nbartlomiej@gmail.com)
*
* This file is part of JavaWars. JavaWars is free software: you can
* redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundatio... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.