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
UpdaterTest.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/test/java/com/github/cypher/model/UpdaterTest.java
package com.github.cypher.model; import org.junit.Test; import static org.junit.Assert.assertTrue; public class UpdaterTest { public class Counter implements Updater.Updatable{ private int counter = 0; public void update(){ counter++; } public int getCount(){ return counter; } public void reset...
1,372
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Main.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/Main.java
package com.github.cypher; import com.airhacks.afterburner.injection.Injector; import com.github.cypher.gui.Executor; import com.github.cypher.gui.root.RootView; import com.github.cypher.model.Client; import com.github.cypher.model.ModelFactory; import com.github.cypher.settings.Settings; import com.github.cypher.sett...
5,612
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Util.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/Util.java
package com.github.cypher; import java.io.*; public final class Util { // Util class shouldn't be creatable private Util(){} static String capitalize(String name) { return name.substring(0, 1).toUpperCase() + name.substring(1); } static String decapitalize(String name) { return name.substring(0, 1).toLowe...
997
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
PropertyChangeEvent.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/PropertyChangeEvent.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.ApiLayer; public class PropertyChangeEvent<T> extends Event { private final String property; private final T value; PropertyChangeEvent(ApiLayer api, int originServerTs, User sender, String eventId, String type, int age, String property, T value) { ...
529
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
PermissionTable.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/PermissionTable.java
package com.github.cypher.sdk; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import java.io.IOException; import java.util.HashMap; import java.util.Map; public class PermissionTable { private final int sendEvents; private final int invite; private final int setState; private final int r...
2,438
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Member.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/Member.java
package com.github.cypher.sdk; import javafx.beans.property.IntegerProperty; import javafx.beans.property.SimpleIntegerProperty; import javafx.beans.value.ChangeListener; /** * Represents the membership of a User in a Room */ public class Member { private final User user; private final IntegerProperty privilege; ...
1,116
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Event.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/Event.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.ApiLayer; public class Event { protected final ApiLayer api; private final long originServerTs; private final User sender; private final String eventId; private final String type; private final int age; Event(ApiLayer api, long originServerTs, U...
844
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
SdkFactory.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/SdkFactory.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.MatrixApiLayer; import com.github.cypher.sdk.api.Util; import java.net.URL; public final class SdkFactory { private SdkFactory(){} public static Client createClient(String settingsNamespace){ setupApiLayer(); return new Client(new MatrixApiLayer()...
573
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Client.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/Client.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.ApiLayer; import com.github.cypher.sdk.api.RestfulHTTPException; import com.github.cypher.sdk.api.Session; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.sun.javafx.collections.Observabl...
9,490
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Repository.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/Repository.java
package com.github.cypher.sdk; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; public class Repository<T> { private final Map<String, T> storage = new ConcurrentHashMap<>(); private final Factory<? extends T> factory; interface Factory<K>{ K get(String id); } Repository(Factory<? extends...
709
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
User.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/User.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.ApiLayer; import com.github.cypher.sdk.api.RestfulHTTPException; import com.google.gson.JsonObject; import javafx.beans.property.*; import javafx.beans.value.ChangeListener; import javax.imageio.ImageIO; import java.awt.*; import java.io.IOException; imp...
6,876
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Room.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/Room.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.ApiLayer; import com.github.cypher.sdk.api.RestfulHTTPException; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.sun.javafx.collections.ObservableListWrapper; import com.sun.javafx.collec...
18,845
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
MemberEvent.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/MemberEvent.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.ApiLayer; public class MemberEvent extends Event { private final String userId; private final String membership; MemberEvent(ApiLayer api, int originServerTs, User sender, String eventId, int age, String userId, String membership) { super(api, orig...
541
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Message.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/Message.java
package com.github.cypher.sdk; import com.github.cypher.sdk.api.ApiLayer; import com.google.gson.JsonObject; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.bean...
2,945
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RestfulHTTPException.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/api/RestfulHTTPException.java
package com.github.cypher.sdk.api; import com.google.gson.JsonObject; import javax.xml.ws.http.HTTPException; /** * This class proves information rich errors usually returned from restful http API's */ public class RestfulHTTPException extends HTTPException { private final JsonObject errorResponse; /** * Cre...
1,444
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Endpoint.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/api/Endpoint.java
package com.github.cypher.sdk.api; /* Describes the various Client-Server API Endpoints */ enum Endpoint { // All endpoints THIRD_PERSON_ID ("client/r0/account/3pid"), ROOM_CREATE ("client/r0/createRoom"), ROOM_DIRECTORY ("client/r0/directory/room/{0}"), // {0} = roomAlias LOGIN ("c...
1,988
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
MatrixApiLayer.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/api/MatrixApiLayer.java
package com.github.cypher.sdk.api; import com.google.gson.*; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * This class provides access to matrix e...
17,603
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Util.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/api/Util.java
package com.github.cypher.sdk.api; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import com.google.gson.stream.JsonReader; import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.UnsupportedEncodingExcepti...
4,926
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Session.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/api/Session.java
package com.github.cypher.sdk.api; import com.google.gson.JsonObject; import java.io.IOException; import java.io.Serializable; /* Represents a User session */ public class Session implements Serializable { private final String userId; private final String accessToken; private final String refreshToken; privat...
1,921
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
ApiLayer.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/sdk/api/ApiLayer.java
package com.github.cypher.sdk.api; import com.google.gson.JsonArray; import com.google.gson.JsonObject; import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; import java.net.URL; /** * This class provides access to matrix like endpoints trough * ordinary java methods return...
12,219
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
CustomListCell.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/CustomListCell.java
package com.github.cypher.gui; import javafx.scene.Node; import javafx.scene.control.ListCell; /* List view cellFactory example: listView.setCellFactory((o) -> { ExampleListItemView view = new ExampleListItemView(); view.getView(); return (ExampleListItemPresenter) view.getPresenter(); }); */ /** * Abstract...
1,640
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
FXThreadedObservableValueWrapper.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/FXThreadedObservableValueWrapper.java
package com.github.cypher.gui; import javafx.application.Platform; import javafx.beans.InvalidationListener; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import java.util.LinkedList; import java.util.List; // Wraps an ObservableValue to support binding directly to JavaFX GUI e...
2,880
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
FXThreadedObservableListWrapper.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/FXThreadedObservableListWrapper.java
package com.github.cypher.gui; import javafx.application.Platform; import javafx.beans.InvalidationListener; import javafx.collections.FXCollections; import javafx.collections.ListChangeListener; import javafx.collections.ObservableList; // Wraps an ObservableList to support binding directly to JavaFX GUI elements //...
1,332
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Executor.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/Executor.java
package com.github.cypher.gui; import java.util.Queue; import java.util.concurrent.ConcurrentLinkedQueue; public class Executor extends Thread { // Queue of actions private final Queue<Runnable> queue = new ConcurrentLinkedQueue<>(); // Flag for handling interruptions that shouldn't kill the thread private vola...
1,151
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RootView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/RootView.java
package com.github.cypher.gui.root; import com.airhacks.afterburner.views.FXMLView; public class RootView extends FXMLView { }
129
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RootPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/RootPresenter.java
package com.github.cypher.gui.root; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.gui.Executor; import com.github.cypher.gui.FXThreadedObservableListWrapper; import com.github.cypher.gui.root.adddialog.AddDialogView; import com.github.cypher.gui.root.loading.LoadingView; import com.github.cy...
5,844
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomCollectionListItemView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollectionlistitem/RoomCollectionListItemView.java
package com.github.cypher.gui.root.roomcollectionlistitem; import com.airhacks.afterburner.views.FXMLView; public class RoomCollectionListItemView extends FXMLView { }
170
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomCollectionListItemPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollectionlistitem/RoomCollectionListItemPresenter.java
package com.github.cypher.gui.root.roomcollectionlistitem; import com.github.cypher.model.Server; import com.github.cypher.settings.Settings; import com.github.cypher.gui.CustomListCell; import com.github.cypher.gui.FXThreadedObservableValueWrapper; import com.github.cypher.model.Client; import com.github.cypher.model...
1,432
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
LoginPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/login/LoginPresenter.java
package com.github.cypher.gui.root.login; import com.github.cypher.settings.Settings; import com.github.cypher.gui.Executor; import com.github.cypher.model.Client; import com.github.cypher.model.SdkException; import javafx.application.Platform; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx...
3,337
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
LoginView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/login/LoginView.java
package com.github.cypher.gui.root.login; import com.airhacks.afterburner.views.FXMLView; public class LoginView extends FXMLView { }
136
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
SettingsPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/settings/SettingsPresenter.java
package com.github.cypher.gui.root.settings; import com.github.cypher.gui.Executor; import com.github.cypher.model.Client; import com.github.cypher.model.SdkException; import com.github.cypher.settings.Settings; import javafx.application.Platform; import javafx.fxml.FXML; import javafx.scene.control.*; import javax.i...
2,698
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
SettingsView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/settings/SettingsView.java
package com.github.cypher.gui.root.settings; import com.airhacks.afterburner.views.FXMLView; public class SettingsView extends FXMLView { }
142
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomCollectionPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/RoomCollectionPresenter.java
package com.github.cypher.gui.root.roomcollection; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.gui.FXThreadedObservableListWrapper; import com.github.cypher.gui.FXThreadedObservableValueWrapper; import com.github.cypher.gui.root.roomcollection.directory.DirectoryView; import com.github.cyph...
5,001
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomCollectionView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/RoomCollectionView.java
package com.github.cypher.gui.root.roomcollection; import com.airhacks.afterburner.views.FXMLView; public class RoomCollectionView extends FXMLView { }
154
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
DirectoryView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/directory/DirectoryView.java
package com.github.cypher.gui.root.roomcollection.directory; import com.airhacks.afterburner.views.FXMLView; public class DirectoryView extends FXMLView { }
159
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
DirectoryPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/directory/DirectoryPresenter.java
package com.github.cypher.gui.root.roomcollection.directory; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.settings.Settings; import com.github.cypher.model.Client; import com.google.common.eventbus.EventBus; import javafx.fxml.FXML; import javax.inject.Inject; public class DirectoryPresen...
526
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomListItemView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/roomlistitem/RoomListItemView.java
package com.github.cypher.gui.root.roomcollection.roomlistitem; import com.airhacks.afterburner.views.FXMLView; public class RoomListItemView extends FXMLView { }
165
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomListItemPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/roomlistitem/RoomListItemPresenter.java
package com.github.cypher.gui.root.roomcollection.roomlistitem; import com.github.cypher.gui.CustomListCell; import com.github.cypher.gui.Executor; import com.github.cypher.gui.FXThreadedObservableValueWrapper; import com.github.cypher.model.Room; import javafx.application.Platform; import javafx.beans.property.Object...
2,459
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/RoomPresenter.java
package com.github.cypher.gui.root.roomcollection.room; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.gui.FXThreadedObservableListWrapper; import com.github.cypher.gui.root.roomcollection.room.chat.ChatView; import com.github.cypher.gui.root.roomcollection.room.memberlistitem.MemberListItemPr...
3,489
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/RoomView.java
package com.github.cypher.gui.root.roomcollection.room; import com.airhacks.afterburner.views.FXMLView; public class RoomView extends FXMLView { }
149
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
ChatView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/chat/ChatView.java
package com.github.cypher.gui.root.roomcollection.room.chat; import com.airhacks.afterburner.views.FXMLView; public class ChatView extends FXMLView { }
154
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
ChatPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/chat/ChatPresenter.java
package com.github.cypher.gui.root.roomcollection.room.chat; import com.github.cypher.gui.Executor; import com.github.cypher.gui.FXThreadedObservableListWrapper; import com.github.cypher.gui.FXThreadedObservableValueWrapper; import com.github.cypher.gui.root.roomcollection.room.chat.eventlistitem.EventListItemPresente...
7,539
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
EventListItemPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/chat/eventlistitem/EventListItemPresenter.java
package com.github.cypher.gui.root.roomcollection.room.chat.eventlistitem; import com.github.cypher.gui.CustomListCell; import com.github.cypher.gui.Executor; import com.github.cypher.gui.FXThreadedObservableValueWrapper; import com.github.cypher.model.Client; import com.github.cypher.model.Event; import com.github.cy...
6,063
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
EventListItemView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/chat/eventlistitem/EventListItemView.java
package com.github.cypher.gui.root.roomcollection.room.chat.eventlistitem; import com.airhacks.afterburner.views.FXMLView; public class EventListItemView extends FXMLView { }
177
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
SettingsPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/settings/SettingsPresenter.java
package com.github.cypher.gui.root.roomcollection.room.settings; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.settings.Settings; import com.github.cypher.model.Client; import com.google.common.eventbus.EventBus; import javafx.fxml.FXML; import javax.inject.Inject; public class SettingsPres...
535
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
SettingsView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/settings/SettingsView.java
package com.github.cypher.gui.root.roomcollection.room.settings; import com.airhacks.afterburner.views.FXMLView; public class SettingsView extends FXMLView { }
162
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
MemberListItemView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/memberlistitem/MemberListItemView.java
package com.github.cypher.gui.root.roomcollection.room.memberlistitem; import com.airhacks.afterburner.views.FXMLView; public class MemberListItemView extends FXMLView { }
174
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
MemberListItemPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/roomcollection/room/memberlistitem/MemberListItemPresenter.java
package com.github.cypher.gui.root.roomcollection.room.memberlistitem; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.gui.Executor; import com.github.cypher.gui.FXThreadedObservableValueWrapper; import com.github.cypher.settings.Settings; import com.github.cypher.model.Client; import com.githu...
1,803
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
AddDialogPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/adddialog/AddDialogPresenter.java
package com.github.cypher.gui.root.adddialog; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.model.Client; import com.github.cypher.settings.Settings; import com.google.common.eventbus.EventBus; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.scene.control.TextField; im...
1,048
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
AddDialogView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/adddialog/AddDialogView.java
package com.github.cypher.gui.root.adddialog; import com.airhacks.afterburner.views.FXMLView; public class AddDialogView extends FXMLView { }
144
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
LoadingView.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/loading/LoadingView.java
package com.github.cypher.gui.root.loading; import com.airhacks.afterburner.views.FXMLView; public class LoadingView extends FXMLView { }
139
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
LoadingPresenter.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/gui/root/loading/LoadingPresenter.java
package com.github.cypher.gui.root.loading; import com.github.cypher.eventbus.ToggleEvent; import com.google.common.eventbus.EventBus; import com.google.common.eventbus.Subscribe; import javafx.application.Platform; import javafx.fxml.FXML; import javafx.scene.image.Image; import javafx.scene.image.ImageView; import ...
843
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
TOMLSettings.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/settings/TOMLSettings.java
package com.github.cypher.settings; import com.moandjiezana.toml.Toml; import com.moandjiezana.toml.TomlWriter; import java.io.File; import java.io.IOException; import java.util.Locale; public class TOMLSettings implements Settings { // Application specific constants private static final String FILE_NAME = "conf...
5,689
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Settings.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/settings/Settings.java
package com.github.cypher.settings; import java.util.Locale; public interface Settings { // Language setting Locale getLanguage(); void setLanguage(Locale language); // Save session ("keep me logged in") settings boolean getSaveSession(); void setSaveSession(boolean saveSession); boolean getUseSystemTray(); ...
1,323
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
ToggleEvent.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/eventbus/ToggleEvent.java
package com.github.cypher.eventbus; public enum ToggleEvent { HIDE_SETTINGS, SHOW_SETTINGS, TOGGLE_SETTINGS, HIDE_ROOM_SETTINGS, SHOW_ROOM_SETTINGS, TOGGLE_ROOM_SETTINGS, HIDE_DIRECTORY, SHOW_DIRECTORY, TOGGLE_DIRECTORY, HIDE_ADD_DIALOG, SHOW_ADD_DIALOG, TOGGLE_ADD_DIALOG, LOGIN, LOGOUT, SHOW_LOADI...
340
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Member.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Member.java
package com.github.cypher.model; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.scene.image.Image; public class Member { private final User user; private f...
888
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Event.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Event.java
package com.github.cypher.model; public class Event { private final String eventId; private final long originServerTimeStamp; private final User sender; Event(Repository<User> repo,com.github.cypher.sdk.Event sdkEvent){ eventId = sdkEvent.getEventId(); originServerTimeStamp = sdkEvent.getOriginServerTs(); s...
551
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
GeneralCollection.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/GeneralCollection.java
package com.github.cypher.model; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.scene.image.Image; public class GeneralCollection implements RoomCollection { private stati...
1,227
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Client.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Client.java
package com.github.cypher.model; import com.github.cypher.eventbus.ToggleEvent; import com.github.cypher.sdk.api.RestfulHTTPException; import com.github.cypher.sdk.api.Session; import com.github.cypher.settings.Settings; import com.google.common.eventbus.EventBus; import com.google.common.eventbus.Subscribe; import ja...
8,650
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Server.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Server.java
package com.github.cypher.model; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import java...
1,389
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Repository.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Repository.java
package com.github.cypher.model; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; public class Repository<T> { private final Map<String, T> storage = new ConcurrentHashMap<>(); private final Factory<? extends T> factory; interface Factory<K>{ K get(String id); } Repository(Factory<? exten...
711
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Updater.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Updater.java
package com.github.cypher.model; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; class Updater extends Thread { // Holds all updatable classes // Initiated to size 10 but will resize if necessary // The value (Integer) represents the "tick interval". I.e. the Updatable will be notified every ...
1,424
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
SessionManager.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/SessionManager.java
package com.github.cypher.model; import com.github.cypher.sdk.api.Session; import java.io.*; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; // Handles the loading and saving of the "last session" to enable auto-login / "keep me logged in" class SessionManager { private static fin...
3,001
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
User.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/User.java
package com.github.cypher.model; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.beans.value.ChangeListener; import javafx.scene.image.Image; import java.io.IOE...
2,442
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Room.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Room.java
package com.github.cypher.model; import com.github.cypher.sdk.api.RestfulHTTPException; import javafx.beans.property.*; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.scene.image.Image; import java.io.IOException; import java.net.URL; import java.util.Optional; publi...
7,063
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Util.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Util.java
package com.github.cypher.model; import javax.imageio.ImageIO; import java.awt.*; import java.awt.geom.AffineTransform; import java.awt.image.AffineTransformOp; import java.awt.image.BufferedImage; import java.awt.image.RenderedImage; import java.awt.image.WritableRaster; import java.io.ByteArrayInputStream; import ja...
3,843
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
SdkException.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/SdkException.java
package com.github.cypher.model; import com.github.cypher.sdk.api.RestfulHTTPException; public class SdkException extends Exception{ private final Type type; private final Exception inner; enum Type { RATE_LIMIT, BAD_REQUEST, CONNECTION_TIMEOUT, AUTH, OTHER } SdkException(Exception ex){ inner = ex...
740
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
PMCollection.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/PMCollection.java
package com.github.cypher.model; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.scene.image.Image; public class PMCollection implements RoomCollection { private static fin...
1,202
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
RoomCollection.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/RoomCollection.java
package com.github.cypher.model; import javafx.beans.property.ObjectProperty; import javafx.collections.ObservableList; import javafx.scene.image.Image; public interface RoomCollection { ObservableList<Room> getRoomsProperty(); void addRoom(Room room); Image getImage(); ObjectProperty<Image> getImageProperty(); }...
321
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
Message.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/Message.java
package com.github.cypher.model; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; public class Message extends Event { private final StringProperty body; private final StringProperty formattedBody; Message(Repository<User> repo, com.github.cypher.sdk.Message sdkMessa...
970
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
ModelFactory.java
/FileExtraction/Java_unseen/williamleven_Cypher/src/main/java/com/github/cypher/model/ModelFactory.java
package com.github.cypher.model; import com.github.cypher.sdk.SdkFactory; import com.github.cypher.settings.Settings; import com.google.common.eventbus.EventBus; public final class ModelFactory { public static Client createClient(Settings settings, EventBus eventBus, String userDataDirectory, String settingsNamespac...
529
Java
.java
williamleven/Cypher
8
1
0
2017-03-20T10:42:03Z
2017-10-22T22:59:11Z
UtilsTest.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/test/java/org/hvdw/jexiftoolgui/UtilsTest.java
package org.hvdw.jexiftoolgui; import org.junit.Rule; import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import static org.junit.Assert.*; public class UtilsTest { @Rule public final RestoreSystemProperties restoreSystemProperties = new RestoreSystemProperties(); ...
1,841
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
ExportToPDF.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/ExportToPDF.java
package org.hvdw.jexiftoolgui; import com.itextpdf.io.image.ImageData; import com.itextpdf.io.image.ImageDataFactory; import com.itextpdf.kernel.pdf.PdfDocument; import com.itextpdf.kernel.pdf.PdfWriter; import com.itextpdf.layout.Document; import com.itextpdf.layout.element.*; import org.hvdw.jexiftoolgui.controllers...
22,445
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
MyVariables.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/MyVariables.java
package org.hvdw.jexiftoolgui; import javax.swing.*; import java.io.File; import java.util.*; /** * This is the big setter/getter class for the entire program */ public class MyVariables { private final static MyVariables staticInstance = new MyVariables(); private MyVariables() { } private int ...
11,065
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
mainScreen.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/mainScreen.java
package org.hvdw.jexiftoolgui; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.controllers.*; import org.hvdw.jexiftoolgui.datetime.DateTime; impor...
339,850
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
ExiftoolReference.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/ExiftoolReference.java
package org.hvdw.jexiftoolgui; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import org.hvdw.jexiftoolgui.controllers.CSVUtils; import org.hvdw.jexiftoolgui.controllers.StandardFileIO; import org.hvdw.jexiftoolgui.facad...
21,260
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
MyConstants.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/MyConstants.java
package org.hvdw.jexiftoolgui; import java.awt.Font; public class MyConstants { // pre 2.0.2 version public static final String MY_DATA_FOLDER = "jexiftoolgui_data"; // Version >= 2.0.2 public static final String MY_BASE_FOLDER = "jexiftoolgui"; // exiftool image info parameters public static ...
7,019
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
Application.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/Application.java
package org.hvdw.jexiftoolgui; import org.hvdw.jexiftoolgui.controllers.SingletonEnum; import org.hvdw.jexiftoolgui.facades.IPreferencesFacade; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.swing.*; import javax.swing.plaf.FontUIResource; import java.awt.*; import java.util.Locale; import java...
4,184
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
TablePasteAdapter.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/TablePasteAdapter.java
package org.hvdw.jexiftoolgui; import org.slf4j.LoggerFactory; import javax.swing.*; import javax.swing.table.DefaultTableModel; import java.awt.*; import java.awt.datatransfer.Clipboard; import java.awt.datatransfer.DataFlavor; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt....
8,997
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
Utils.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/Utils.java
package org.hvdw.jexiftoolgui; import ch.qos.logback.classic.Level; import org.hvdw.jexiftoolgui.controllers.*; import org.hvdw.jexiftoolgui.datetime.DateTime; import org.hvdw.jexiftoolgui.datetime.ModifyDateTime; import org.hvdw.jexiftoolgui.datetime.ShiftDateTime; import org.hvdw.jexiftoolgui.editpane.*; import org....
92,119
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
ProgramTexts.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/ProgramTexts.java
package org.hvdw.jexiftoolgui; public class ProgramTexts { /* HTML in Swing components follows the HTML 3.2 standard from 1996. See https://www.w3.org/TR/2018/SPSD-html32-20180315/ All strings use "internal" tags, but not begin and end tags as we use the String.format(ProgramTexts.HTML, <width>, helptext) ...
1,247
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
PreferencesDialog.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/PreferencesDialog.java
package org.hvdw.jexiftoolgui; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.controllers.ExifTool; import org.hvdw.jexiftoolgui.controllers.Standa...
65,945
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
RenamePhotos.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/renaming/RenamePhotos.java
package org.hvdw.jexiftoolgui.renaming; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.*; import org.hvdw.jexiftoolgui.controllers.CommandRunner; i...
60,403
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
SimpleWebView.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/SimpleWebView.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.Utils; import org.slf4j.LoggerFactory; import javax.swing.*; impo...
4,446
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
CreateUpdatemyLens.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/CreateUpdatemyLens.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.model.Lenses; import o...
12,376
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
CreateMenu.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/CreateMenu.java
package org.hvdw.jexiftoolgui.view; import org.hvdw.jexiftoolgui.controllers.MenuActionListener; import javax.swing.*; import java.awt.event.KeyEvent; import java.util.ResourceBundle; public class CreateMenu { private JMenuItem menuItem; public void CreateMenuBar(JFrame frame, JPanel rootPanel, JSplitPa...
13,550
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
LinkListener.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/LinkListener.java
package org.hvdw.jexiftoolgui.view; import org.hvdw.jexiftoolgui.Application; import org.hvdw.jexiftoolgui.Utils; import org.slf4j.LoggerFactory; import javax.swing.event.HyperlinkEvent; import javax.swing.event.HyperlinkListener; import java.awt.*; import java.io.IOException; import java.net.URI; public class LinkL...
1,906
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
ExifToolReferencePanel.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/ExifToolReferencePanel.java
package org.hvdw.jexiftoolgui.view; import org.hvdw.jexiftoolgui.Utils; import org.hvdw.jexiftoolgui.facades.IPreferencesFacade; import org.hvdw.jexiftoolgui.facades.SystemPropertyFacade; import org.slf4j.LoggerFactory; import javax.swing.*; import javax.swing.table.DefaultTableModel; import static org.hvdw.jexifto...
3,132
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
CompareImagesWindow.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/CompareImagesWindow.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import org.hvdw.jexiftoolgui.ExportToPDF; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.ProgramTexts; import org.hvdw.jexiftoolgui.Utils; import org.hvdw.jexiftoolgui.controllers.ImageFunctions; import org.hvdw.jexiftool...
10,980
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
CsvFromCompareImages.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/CsvFromCompareImages.java
package org.hvdw.jexiftoolgui.view; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.MyVariables; import javax.swing.*; import javax.swing.border.TitledBorder; import java.awt.*; import ...
10,775
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
FoundMetaData.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/FoundMetaData.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import org.hvdw.jexiftoolgui.MyVariables; import org.slf4j.LoggerFactory; import javax.swing.*; import javax.swing.table.DefaultTableMod...
13,319
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
ExportFromCompareImagesView.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/ExportFromCompareImagesView.java
package org.hvdw.jexiftoolgui.view; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.MyVariables; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.lang.refle...
11,958
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
WebPageInPanel.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/WebPageInPanel.java
package org.hvdw.jexiftoolgui.view; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.Utils; import java.awt.*; import java.net.URL; import java.util.Locale; import javax.swing.*; import javax.swing.event.HyperlinkListener; public class WebPageInPanel extends JFrame { private final Hyperlink...
1,689
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
MetadataUserCombinations.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/MetadataUserCombinations.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.opencsv.CSVReader; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.ProgramTexts; import org.hvdw.jexift...
51,118
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
Favorites.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/Favorites.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.MyConstants; import org.hvdw.jexiftoolgui.MyVariables; import or...
24,348
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
JxMapViewer.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/JxMapViewer.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.Utils; import org.hvdw...
33,375
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
JavaImageViewer.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/JavaImageViewer.java
package org.hvdw.jexiftoolgui.view; import org.apache.commons.lang3.ArrayUtils; import org.hvdw.jexiftoolgui.Application; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.Utils; import org.hvdw.jexiftoolgui.controllers.ImageFunctions; import org.slf4j.LoggerFactory; import javax.imageio.ImageIO;...
13,474
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
SelectmyLens.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/SelectmyLens.java
package org.hvdw.jexiftoolgui.view; import ch.qos.logback.classic.Logger; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.controllers.SQLiteJDBC; import org.hvdw.jexiftoolgui.editpane.Edit...
11,456
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
SearchMetadataDialog.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/view/SearchMetadataDialog.java
package org.hvdw.jexiftoolgui.view; import com.intellij.uiDesigner.core.GridConstraints; import com.intellij.uiDesigner.core.GridLayoutManager; import com.intellij.uiDesigner.core.Spacer; import org.hvdw.jexiftoolgui.MyVariables; import org.hvdw.jexiftoolgui.ProgramTexts; import javax.swing.*; import java.awt.*; impo...
8,245
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z
IPreferencesFacade.java
/FileExtraction/Java_unseen/hvdwolf_jExifToolGUI/src/main/java/org/hvdw/jexiftoolgui/facades/IPreferencesFacade.java
package org.hvdw.jexiftoolgui.facades; public interface IPreferencesFacade { enum PreferenceKey { USE_LAST_OPENED_FOLDER("uselastopenedfolder"), LAST_OPENED_FOLDER("lastopenedfolder"), DEFAULT_START_FOLDER("defaultstartfolder"), ARTIST("artist"), // xmp-dc:creator, exif:artist, ipt...
2,179
Java
.java
hvdwolf/jExifToolGUI
421
35
33
2019-05-17T13:36:07Z
2023-12-11T23:08:29Z