file_name stringlengths 6 86 | file_path stringlengths 45 249 | content stringlengths 47 6.26M | file_size int64 47 6.26M | language stringclasses 1
value | extension stringclasses 1
value | repo_name stringclasses 767
values | repo_stars int64 8 14.4k | repo_forks int64 0 1.17k | repo_open_issues int64 0 788 | repo_created_at stringclasses 767
values | repo_pushed_at stringclasses 767
values |
|---|---|---|---|---|---|---|---|---|---|---|---|
DavizTheme.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/DavizTheme.java | package com.aexiz.daviz;
import javax.swing.plaf.metal.*;
public class DavizTheme extends OceanTheme {
public String getName() {
return "DaViz";
}
} | 156 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Algorithm.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Algorithm.java | package com.aexiz.daviz.glue;
import com.aexiz.daviz.sim.Process.TProcessDescription;
public abstract class Algorithm {
public interface MaxRounds {
int maxRounds(Network network);
}
protected Assumption assumption;
// General property before simulation
public Assumption getAssumption() {
return assu... | 900 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Event.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Event.java | package com.aexiz.daviz.glue;
import java.util.HashMap;
import java.util.List;
import com.aexiz.daviz.glue.Viewpoint.Node;
import com.aexiz.daviz.sim.Event.TEvent;
import com.aexiz.daviz.sim.Event.TEvent.DEInternal;
import com.aexiz.daviz.sim.Event.TEvent.DEReceive;
import com.aexiz.daviz.sim.Event.TEvent.DEResult;
i... | 10,053 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Viewpoint.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Viewpoint.java | package com.aexiz.daviz.glue;
public abstract class Viewpoint extends Locus {
public static class Channel extends Viewpoint {
public static final String CLIENT_PROPERTY_EDGEMODEL = "edgemodel";
public static final String CLIENT_PROPERTY_FIRST_DIRECTED = "first_directed";
public final Node from;
public... | 2,365 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Locus.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Locus.java | package com.aexiz.daviz.glue;
import java.util.HashMap;
public abstract class Locus {
private HashMap<String,Object> clientProperties = new HashMap<String,Object>();
public void putClientProperty(String key, Object value) {
if (value == null) {
clientProperties.remove(key);
} else {
clientProperties.p... | 764 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Execution.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Execution.java | package com.aexiz.daviz.glue;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import com.aexiz.daviz.glue.Configuration.InitialConfiguration;
import com.aexiz.daviz.sim.Event.TEvent;
import com.aexiz.daviz.sim.Simulation.TSimulation;
import frege.prelude.PreludeBase.TList;
import fre... | 4,506 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Configuration.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Configuration.java | package com.aexiz.daviz.glue;
import java.io.PrintStream;
import java.util.ArrayList;
import com.aexiz.daviz.sim.Process.TProcessDescription;
import com.aexiz.daviz.sim.Set.TSet;
import com.aexiz.daviz.sim.Simulation.TConfiguration;
import frege.prelude.PreludeBase.TEither;
import frege.prelude.PreludeBase.TEither.D... | 4,502 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Information.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Information.java | package com.aexiz.daviz.glue;
public abstract class Information {
Information() {
}
public static abstract class Message extends Information {
public Message() {
}
public abstract String toString();
public abstract boolean equals(Object obj);
}
public static abstract class State extends Information ... | 878 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Assumption.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Assumption.java | package com.aexiz.daviz.glue;
import java.util.List;
import com.aexiz.daviz.glue.Viewpoint.Node;
public class Assumption {
// Configured by subclass
protected boolean infiniteGraph;
protected boolean directedGraph;
protected boolean acylcicGraph;
protected boolean dynamicGraph;
protected boolean fifo_chann... | 1,581 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Simulation.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Simulation.java | package com.aexiz.daviz.glue;
public class Simulation {
// Properties
private Algorithm algorithm;
private Assumption assumption;
private Network network;
// Transient fields
private transient Execution execution;
public Simulation() {
}
public Simulation(Algorithm alg) {
setAlgorithm(alg);
}
pu... | 2,285 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Network.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/Network.java | package com.aexiz.daviz.glue;
import java.util.ArrayList;
import com.aexiz.daviz.sim.Set;
import com.aexiz.daviz.sim.Set.TSet;
import frege.prelude.PreludeBase.TTuple2;
import frege.run8.Lazy;
import frege.run8.Thunk;
public class Network {
private ArrayList<Viewpoint.Node> processes = new ArrayList<Viewpoint.No... | 3,176 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
GlueHelper.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/GlueHelper.java | package com.aexiz.daviz.glue;
import java.util.ArrayList;
import com.aexiz.daviz.sim.Set.TSet;
import static com.aexiz.daviz.sim.Set.glueTuple2IntNormalS;
import static com.aexiz.daviz.sim.Set.glueIntNormalS;
import frege.prelude.PreludeBase.TList;
import frege.prelude.PreludeBase.TList.DCons;
import frege.prelude.P... | 2,446 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Awerbuch.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/Awerbuch.java | package com.aexiz.daviz.glue.alg;
import java.util.List;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.Viewpoint.*;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Information.PropertyBuilder;
imp... | 9,464 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Visited.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/Visited.java | package com.aexiz.daviz.glue.alg;
import java.util.List;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.Viewpoint.*;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Information.PropertyBuilder;
imp... | 6,166 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Tarry.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/Tarry.java | package com.aexiz.daviz.glue.alg;
import java.util.List;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.Viewpoint.*;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Information.PropertyBuilder;
imp... | 5,247 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
TreeAck.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/TreeAck.java | package com.aexiz.daviz.glue.alg;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Information.Message;
import com.aexiz.daviz.glue.Information.PropertyBuilder;
import com.aexiz.da... | 5,902 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Echo.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/Echo.java | package com.aexiz.daviz.glue.alg;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Information.Message;
import com.aexiz.daviz.glue.Information.PropertyBuilder;
import com.aexiz.da... | 5,313 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
DFS.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/DFS.java | package com.aexiz.daviz.glue.alg;
import java.util.List;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.Viewpoint.*;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Information.PropertyBuilder;
imp... | 5,676 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Tree.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/Tree.java | package com.aexiz.daviz.glue.alg;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Information.Message;
import com.aexiz.daviz.glue.Information.PropertyBuilder;
import com.aexiz.da... | 3,692 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Cidon.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/glue/alg/Cidon.java | package com.aexiz.daviz.glue.alg;
import java.util.List;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Assumption;
import com.aexiz.daviz.glue.Viewpoint.*;
import com.aexiz.daviz.glue.GlueHelper;
import com.aexiz.daviz.glue.Information;
import com.aexiz.daviz.glue.Network;
import com.aexiz.daviz.... | 6,687 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
ImageRoot.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/images/ImageRoot.java | package com.aexiz.daviz.images;
public class ImageRoot {
public static final String copyright = "Farm-Fresh v3.92, 10-04-2014 http://www.fatcow.com/free-icons";
private ImageRoot() {}
}
| 195 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
AlgorithmSelection.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/AlgorithmSelection.java | package com.aexiz.daviz.ui;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.alg.*;
class AlgorithmSelection {
String name;
Object alg; // use Object to avoid pulling in Algorithm class
AlgorithmSelection(String name, Object alg) {
this.name = name;
this.alg = alg;
}
public String toS... | 2,048 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
ControlFrame.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/ControlFrame.java | package com.aexiz.daviz.ui;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Desktop;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.ev... | 15,272 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
ChoiceFrame.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/ChoiceFrame.java | package com.aexiz.daviz.ui;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Image;
import java.awt.Window;
import java.util.ArrayList;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JDialog;
import javax.swing.JMenuBar;
import javax.swing.JScrollPane;
impor... | 1,796 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
InfoFrame.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/InfoFrame.java | package com.aexiz.daviz.ui;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Image;
import java.awt.Window;
import java.util.ArrayList;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JDialog;
import javax.swing.JMenuBar;
import jav... | 1,598 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
TimelineFrame.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/TimelineFrame.java | package com.aexiz.daviz.ui;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Image;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import java.util.ArrayList;
import javax.swing.AbstractAction;
import javax.swing.AbstractButton;
import javax.swing.Ac... | 8,608 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
RandomProgram.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/RandomProgram.java | package com.aexiz.daviz.ui;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.util.Random;
import com.aexiz.daviz.glue.Algorithm;
import com.aexiz.daviz.glue.Event;
import com.aexiz.daviz.glue.Execution;
import com.aexiz.daviz.glue.Network;
import com.aexiz.daviz.glue.Simulation;
import co... | 5,341 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
SimulationManager.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/SimulationManager.java | package com.aexiz.daviz.ui;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.LinkedBlockingQueue;
import javax.swing.SwingUtilities;
import com.aexiz.daviz.glue.Event;
import com.aexiz.daviz.glue.Execution;
import com.aexiz.daviz.glue.Network;
impor... | 30,243 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
Controller.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/Controller.java | package com.aexiz.daviz.ui;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Frame;
import java.awt.Toolkit;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.KeyEvent;
import java.awt.event.W... | 19,760 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
ExecutionStepper.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/ExecutionStepper.java | package com.aexiz.daviz.ui;
import java.util.ArrayList;
import com.aexiz.daviz.glue.Execution;
class ExecutionStepper {
int max_rounds;
ArrayList<Execution> path;
Execution current;
boolean replay = false;
ExecutionStepper(Execution ex) {
path = new ArrayList<>();
path.add(current = ex);
}
boolean hasN... | 892 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
AboutFrame.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/AboutFrame.java | package com.aexiz.daviz.ui;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Cursor;
import java.awt.Desktop;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Toolkit;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java... | 4,037 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
TestCase.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/TestCase.java | package com.aexiz.daviz.ui;
import java.util.concurrent.Callable;
import com.aexiz.daviz.glue.*;
import com.aexiz.daviz.glue.Viewpoint.*;
import com.aexiz.daviz.glue.alg.*;
// Note that loading this class will also load all Haskell code
class TestCase {
String page;
AlgorithmSelection algorithm;
Callable<Simula... | 12,345 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
NetworkFrame.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/NetworkFrame.java | package com.aexiz.daviz.ui;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Image;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.util.ArrayList;
import javax.swing.AbstractAction;
import javax.swing.Abs... | 12,066 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
DefaultCarouselCellRenderer.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/DefaultCarouselCellRenderer.java | package com.aexiz.daviz.ui.swing;
import java.awt.Component;
import java.awt.Rectangle;
import javax.swing.BorderFactory;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.ListCellRenderer;
import javax.swing.border.Border;
public class DefaultCarouselCellRenderer... | 2,286 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
DefaultObjectSelectionModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/DefaultObjectSelectionModel.java | package com.aexiz.daviz.ui.swing;
import java.util.IdentityHashMap;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.EventListenerList;
public class DefaultObjectSelectionModel implements ObjectSelectionModel {
private EventListenerList listenerList = new Eve... | 2,034 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
GraphModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/GraphModel.java | package com.aexiz.daviz.ui.swing;
import java.util.ArrayList;
import java.util.EventListener;
import java.util.EventObject;
import javax.swing.event.ChangeListener;
public interface GraphModel {
public interface NodeModel {
public void addChangeListener(ChangeListener l);
public void removeChangeListene... | 3,500 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JTimeline.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JTimeline.java | package com.aexiz.daviz.ui.swing;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Insets;
import java.awt.Point;
import java.awt.Rectangle;
import java.util.EventObject;
import javax.swing.JComponent;
import javax.swing.JViewport;
import javax.swing.UIDefaults;
import java... | 24,274 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
DefaultInfoModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/DefaultInfoModel.java | package com.aexiz.daviz.ui.swing;
import java.util.ArrayList;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.EventListenerList;
public class DefaultInfoModel implements InfoModel {
class DefaultPropertyModel implements PropertyModel {
String title;
O... | 5,986 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
InfoModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/InfoModel.java | package com.aexiz.daviz.ui.swing;
import java.io.Serializable;
import javax.swing.event.ChangeListener;
public interface InfoModel {
static abstract class PropertyType implements Serializable {
private static final long serialVersionUID = -7469784089240414551L;
PropertyType() {}
}
// value is String
static... | 1,474 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JInfoTable.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JInfoTable.java | package com.aexiz.daviz.ui.swing;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.UIDefaults;
import javax.swing.UIManager;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import com.aexiz.daviz.ui.swing.InfoModel.PropertyModel... | 9,423 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
DefaultExecutionModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/DefaultExecutionModel.java | package com.aexiz.daviz.ui.swing;
import java.util.ArrayList;
import java.util.Collections;
import java.util.EventObject;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.EventListenerList;
/**
* An execution model consists of zero or more processes, numbered $... | 30,591 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
ExecutionModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/ExecutionModel.java | package com.aexiz.daviz.ui.swing;
import java.io.Serializable;
import java.util.EventListener;
import java.util.EventObject;
import javax.swing.event.ChangeListener;
import com.aexiz.daviz.ui.swing.JTimeline.JEvent;
public interface ExecutionModel {
static abstract class EventType implements Serializable {
pri... | 6,988 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JCarousel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JCarousel.java | package com.aexiz.daviz.ui.swing;
import java.awt.Color;
import java.awt.Component;
import java.awt.Point;
import java.awt.Rectangle;
import javax.swing.DefaultListModel;
import javax.swing.DefaultListSelectionModel;
import javax.swing.JComponent;
import javax.swing.ListModel;
import javax.swing.ListSelectionModel;
i... | 8,428 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JKnob.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JKnob.java | package com.aexiz.daviz.ui.swing;
import java.awt.Color;
import javax.swing.JComponent;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.EventListenerList;
import javax.swing.plaf.ComponentUI;
// Simple button-ish component, used by the Nodes of JGraph and Event... | 6,497 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JGraph.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JGraph.java | package com.aexiz.daviz.ui.swing;
import java.awt.Color;
import java.awt.Component;
import java.io.Serializable;
import java.util.EventObject;
import javax.swing.JComponent;
import javax.swing.UIDefaults;
import javax.swing.UIManager;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
imp... | 21,918 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
FutureEvent.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/FutureEvent.java | package com.aexiz.daviz.ui.swing;
import com.aexiz.daviz.ui.swing.ExecutionModel.DecideEventType;
import com.aexiz.daviz.ui.swing.ExecutionModel.EventType;
import com.aexiz.daviz.ui.swing.ExecutionModel.InternalEventType;
import com.aexiz.daviz.ui.swing.ExecutionModel.ReceiveEventType;
import com.aexiz.daviz.ui.swing.... | 1,540 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JAssignmentField.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JAssignmentField.java | package com.aexiz.daviz.ui.swing;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JPanel;
import javax... | 4,303 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
CarouselCellRenderer.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/CarouselCellRenderer.java | package com.aexiz.daviz.ui.swing;
import java.awt.Component;
public interface CarouselCellRenderer {
Component getCarouselCellRendererComponent(JCarousel list, Object value, int index, boolean isSelected, boolean cellHasFocus);
}
| 246 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JCoolBar.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JCoolBar.java | package com.aexiz.daviz.ui.swing;
import java.awt.Color;
import java.awt.Component;
import javax.swing.AbstractButton;
import javax.swing.Box;
import javax.swing.JComponent;
import javax.swing.JToolBar;
public class JCoolBar extends JToolBar {
private static final long serialVersionUID = -1881213485624315909L;
p... | 1,203 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
ObjectSelectionModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/ObjectSelectionModel.java | package com.aexiz.daviz.ui.swing;
import javax.swing.event.ChangeListener;
public interface ObjectSelectionModel {
public void clearSelection();
public boolean isSelected(Object o);
public boolean isSelectionEmpty();
public boolean addSelection(Object o);
public void removeSelection(Object o);
publi... | 481 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
JStatus.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/JStatus.java | package com.aexiz.daviz.ui.swing;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.ComponentOrientation;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
im... | 2,939 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
DefaultGraphModel.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/DefaultGraphModel.java | package com.aexiz.daviz.ui.swing;
import java.util.ArrayList;
import java.util.EventObject;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.event.EventListenerList;
public class DefaultGraphMo... | 15,949 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
InfoTableUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/InfoTableUI.java | package com.aexiz.daviz.ui.swing.plaf;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.plaf.ComponentUI;
import com.aexiz.daviz.ui.swing.JInfoTable;
public abstract class InfoTableUI extends ComponentUI {
public void configureLabelComponent(JLabel c) {
... | 631 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
TimelineUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/TimelineUI.java | package com.aexiz.daviz.ui.swing.plaf;
import javax.swing.plaf.ComponentUI;
import com.aexiz.daviz.ui.swing.JTimeline.JEvent;
import com.aexiz.daviz.ui.swing.JTimeline.JMessage;
import com.aexiz.daviz.ui.swing.JTimeline.JTimeRuler;
public abstract class TimelineUI extends ComponentUI {
public void configureEventC... | 487 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
CarouselUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/CarouselUI.java | package com.aexiz.daviz.ui.swing.plaf;
import java.awt.Point;
import java.awt.Rectangle;
import javax.swing.plaf.ComponentUI;
import com.aexiz.daviz.ui.swing.JCarousel;
public abstract class CarouselUI extends ComponentUI {
public abstract int locationToIndex(JCarousel c, Point location);
public abstract Poin... | 459 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
GraphUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/GraphUI.java | package com.aexiz.daviz.ui.swing.plaf;
import javax.swing.plaf.ComponentUI;
import com.aexiz.daviz.ui.swing.JGraph.JEdge;
import com.aexiz.daviz.ui.swing.JGraph.JNode;
public abstract class GraphUI extends ComponentUI {
public void configureNodeComponent(JNode c) {
}
public void configureEdgeComponent(JEdge c... | 347 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
BasicCarouselUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/basic/BasicCarouselUI.java | package com.aexiz.daviz.ui.swing.plaf.basic;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import... | 6,340 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
BasicTimelineUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/basic/BasicTimelineUI.java | package com.aexiz.daviz.ui.swing.plaf.basic;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.... | 23,484 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
BasicGraphUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/basic/BasicGraphUI.java | package com.aexiz.daviz.ui.swing.plaf.basic;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.LayoutManager;
impor... | 27,545 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
GraphicsUtils.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/basic/GraphicsUtils.java | package com.aexiz.daviz.ui.swing.plaf.basic;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Shape;
import java.awt.geom.AffineTransform;
import java.awt.geom.Path2D;
class GraphicsUtils {
private static final Shape ARROW_HEAD = initArrowHead();
static void ... | 1,432 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
BasicInfoTableUI.java | /FileExtraction/Java_unseen/praalhans_DaViz/src/java/com/aexiz/daviz/ui/swing/plaf/basic/BasicInfoTableUI.java | package com.aexiz.daviz.ui.swing.plaf.basic;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.BorderFactory;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.UIManager;
import com.aexiz.daviz.ui... | 2,891 | Java | .java | praalhans/DaViz | 10 | 2 | 0 | 2019-12-09T10:03:20Z | 2020-03-19T17:32:03Z |
TestSignedness.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/test/java/org/phlo/audio/TestSignedness.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 21,735 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
TestSampleBuffer.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/test/java/org/phlo/audio/TestSampleBuffer.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 6,057 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
TestJavaSoundSink.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/test/java/org/phlo/audio/TestJavaSoundSink.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,662 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
TestFunctions.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/test/java/org/phlo/audio/TestFunctions.java | package org.phlo.audio;
import org.junit.*;
public class TestFunctions {
public float resultFloat;
public double resultDouble;
@Test
public void testSincDouble() {
double x = Double.MIN_VALUE;
Assert.assertEquals(Functions.sinc(x), 1.0, 0.0);
while (x < 1.0) {
Assert.assertEquals("x=" + x, Taylor.sinc(x... | 2,608 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtpRetransmitRequestHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtpRetransmitRequestHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 15,087 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RunningExponentialAverage.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RunningExponentialAverage.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,920 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtpAudioAlacDecodeHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtpAudioAlacDecodeHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 7,397 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RtpEncodeHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RtpEncodeHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,167 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RtpLoggingHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RtpLoggingHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 2,313 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtspPipelineFactory.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtspPipelineFactory.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,943 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RtspLoggingHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RtspLoggingHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 2,885 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
AirTunesCrytography.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/AirTunesCrytography.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 13,414 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
ExceptionLoggingHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/ExceptionLoggingHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,274 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtpDecodeHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtpDecodeHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,542 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
InvalidPacketException.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/InvalidPacketException.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 888 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtspMethods.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtspMethods.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,490 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtpAudioDecryptionHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtpAudioDecryptionHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 2,332 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtpTimingHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtpTimingHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 7,238 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
LogFormatter.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/LogFormatter.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,979 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
AirReceiver.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/AirReceiver.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 14,695 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
ProtocolException.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/ProtocolException.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 863 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
AudioOutputQueue.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/AudioOutputQueue.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 17,495 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RunningWeightedAverage.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RunningWeightedAverage.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,652 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RtspErrorResponseHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RtspErrorResponseHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 2,074 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopAudioHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopAudioHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 27,995 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RtpPacket.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RtpPacket.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 5,137 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
Base64.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/Base64.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,996 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtspChallengeResponseHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtspChallengeResponseHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 3,653 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
AudioClock.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/AudioClock.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,882 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtpPacket.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtpPacket.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 17,791 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtspOptionsHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtspOptionsHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 2,055 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
AudioStreamInformationProvider.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/AudioStreamInformationProvider.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,212 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RaopRtspHeaderHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RaopRtspHeaderHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 2,161 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
RtspUnsupportedResponseHandler.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/AirReceiver/RtspUnsupportedResponseHandler.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,660 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
SampleIndexedAccessor.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/audio/SampleIndexedAccessor.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,021 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
Latch.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/audio/Latch.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 2,103 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
SampleBuffer.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/audio/SampleBuffer.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 4,880 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
SampleOffset.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/audio/SampleOffset.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 1,390 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
SampleSource.java | /FileExtraction/Java_unseen/fgp_AirReceiver/src/main/java/org/phlo/audio/SampleSource.java | /*
* This file is part of AirReceiver.
*
* AirReceiver 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
* (at your option) any later version.
* AirReceiver is distrib... | 802 | Java | .java | fgp/AirReceiver | 170 | 102 | 9 | 2011-04-28T07:17:04Z | 2020-10-13T10:13:16Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.