repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/StartServer.java
server/src/main/java/collide/server/StartServer.java
package collide.server; import collide.plugin.server.ant.AntServerPlugin; import collide.plugin.server.gwt.GwtServerPlugin; import collide.server.codegraph.CodeGraphMonitor; import collide.server.configuration.CollideOpts; import collide.vertx.VertxService; import collide.vertx.VertxServiceImpl; import com.google.coll...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/CollideServer.java
server/src/main/java/collide/server/CollideServer.java
package collide.server; import collide.server.handler.WebAppHandler; import collide.vertx.VertxService; import com.github.javaparser.JavaParser; import com.github.javaparser.ParseException; import com.github.javaparser.ast.expr.UiContainerExpr; import io.vertx.core.http.HttpServerRequest; import io.vertx.core.http.Htt...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/codegraph/CodeGraphMonitor.java
server/src/main/java/collide/server/codegraph/CodeGraphMonitor.java
package collide.server.codegraph; import com.google.collide.dto.server.DtoServerImpls.CodeGraphResponseImpl; import com.google.collide.server.shared.util.Dto; import io.vertx.core.AbstractVerticle; import io.vertx.core.json.JsonObject; /** * Created by James X. Nelson (james @wetheinter.net) on 8/29/16. */ public c...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/configuration/EditorHomeHandler.java
server/src/main/java/collide/server/configuration/EditorHomeHandler.java
package collide.server.configuration; import xapi.args.ArgHandlerPath; import xapi.fu.In1; import xapi.fu.Out1; import java.nio.file.Path; /** * Created by James X. Nelson (james @wetheinter.net) on 8/29/16. */ public abstract class EditorHomeHandler extends ArgHandlerPath { public static EditorHomeHandler ha...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/configuration/ClusteringHandler.java
server/src/main/java/collide/server/configuration/ClusteringHandler.java
package collide.server.configuration; import xapi.args.ArgHandlerFlag; import xapi.fu.In1; /** * Created by James X. Nelson (james @wetheinter.net) on 8/29/16. */ public abstract class ClusteringHandler extends ArgHandlerFlag { public static ClusteringHandler handle(In1<Boolean> consumer) { return new ...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/configuration/CollideOpts.java
server/src/main/java/collide/server/configuration/CollideOpts.java
package collide.server.configuration; import xapi.args.ArgProcessorBase; import java.nio.file.Path; /** * Created by James X. Nelson (james @wetheinter.net) on 8/29/16. */ public class CollideOpts extends ArgProcessorBase { private static CollideOpts SINGLETON = new CollideOpts(); Path editorHome; Pa...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/configuration/WebFilesHandler.java
server/src/main/java/collide/server/configuration/WebFilesHandler.java
package collide.server.configuration; import xapi.args.ArgHandlerPath; import xapi.fu.In1; import java.nio.file.Path; /** * Created by James X. Nelson (james @wetheinter.net) on 8/29/16. */ public abstract class WebFilesHandler extends ArgHandlerPath { public static WebFilesHandler handle(In1<Path> consumer) ...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/collide/server/handler/WebAppHandler.java
server/src/main/java/collide/server/handler/WebAppHandler.java
package collide.server.handler; import com.github.javaparser.ast.expr.UiContainerExpr; import xapi.log.X_Log; import xapi.scope.request.RequestScope; import xapi.server.vertx.VertxRequest; import xapi.server.vertx.VertxResponse; import xapi.time.X_Time; /** * Created by James X. Nelson (james @wetheinter.net) on 10/...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/dto/server/DtoServerImpls.java
server/src/main/java/com/google/collide/dto/server/DtoServerImpls.java
// GENERATED SOURCE. DO NOT EDIT. package com.google.collide.dto.server; import com.google.collide.dtogen.server.JsonSerializable; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonNull; import com.google.g...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
true
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/dto/server/ServerDocOpFactory.java
server/src/main/java/com/google/collide/dto/server/ServerDocOpFactory.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/dtogen/server/RoutableDtoServerImpl.java
server/src/main/java/com/google/collide/dtogen/server/RoutableDtoServerImpl.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/dtogen/server/JsonSerializable.java
server/src/main/java/com/google/collide/dtogen/server/JsonSerializable.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/filetree/FileTree.java
server/src/main/java/com/google/collide/server/filetree/FileTree.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/workspace/WorkspaceState.java
server/src/main/java/com/google/collide/server/workspace/WorkspaceState.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/participants/Participants.java
server/src/main/java/com/google/collide/server/participants/Participants.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/documents/DocOpComponentDeserializer.java
server/src/main/java/com/google/collide/server/documents/DocOpComponentDeserializer.java
// Copyright 2012 Google Inc. All Rights Reserved. package com.google.collide.server.documents; import static com.google.collide.dto.DocOpComponent.Type.DELETE; import static com.google.collide.dto.DocOpComponent.Type.INSERT; import static com.google.collide.dto.DocOpComponent.Type.RETAIN; import static com.google.co...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/documents/FileEditSessionImpl.java
server/src/main/java/com/google/collide/server/documents/FileEditSessionImpl.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/documents/EditSessions.java
server/src/main/java/com/google/collide/server/documents/EditSessions.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/documents/FileEditSession.java
server/src/main/java/com/google/collide/server/documents/FileEditSession.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/documents/VersionedDocument.java
server/src/main/java/com/google/collide/server/documents/VersionedDocument.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/documents/ImmutableFileEditSession.java
server/src/main/java/com/google/collide/server/documents/ImmutableFileEditSession.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/documents/SelectionTracker.java
server/src/main/java/com/google/collide/server/documents/SelectionTracker.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/maven/MavenResources.java
server/src/main/java/com/google/collide/server/maven/MavenResources.java
package com.google.collide.server.maven; import xapi.fu.Lazy; import xapi.fu.lazy.ResettableLazy; import java.io.File; import java.io.IOException; import java.io.Serializable; /** * * Project configuration settings to use during maven builds. * * These settings can be used for any multi-module project configurat...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/maven/MavenController.java
server/src/main/java/com/google/collide/server/maven/MavenController.java
package com.google.collide.server.maven; import com.google.collide.dto.server.DtoServerImpls.MavenConfigImpl; import com.google.collide.server.shared.BusModBase; import com.google.collide.server.shared.util.Dto; public class MavenController extends BusModBase{ private String addressBase; @Override public voi...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/fe/WebFE.java
server/src/main/java/com/google/collide/server/fe/WebFE.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/fe/Cookie.java
server/src/main/java/com/google/collide/server/fe/Cookie.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/BusModBase.java
server/src/main/java/com/google/collide/server/shared/BusModBase.java
package com.google.collide.server.shared; import io.vertx.core.AbstractVerticle; import io.vertx.core.eventbus.EventBus; import io.vertx.core.eventbus.Message; import io.vertx.core.json.JsonArray; import io.vertx.core.json.JsonObject; import io.vertx.core.logging.Logger; import io.vertx.core.logging.LoggerFactory; /*...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/util/FileHasher.java
server/src/main/java/com/google/collide/server/shared/util/FileHasher.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/util/Dto.java
server/src/main/java/com/google/collide/server/shared/util/Dto.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/util/DtoManifestUtil.java
server/src/main/java/com/google/collide/server/shared/util/DtoManifestUtil.java
package com.google.collide.server.shared.util; import com.google.collide.dto.GwtCompile; import com.google.collide.dto.GwtRecompile; import com.google.collide.dto.server.DtoServerImpls.GwtCompileImpl; import xapi.collect.api.IntTo; import xapi.gwtc.api.GwtManifest; import xapi.log.X_Log; import static collide.shared....
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/util/ReflectionChannel.java
server/src/main/java/com/google/collide/server/shared/util/ReflectionChannel.java
package com.google.collide.server.shared.util; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import com.google.collide.shared.util.Channel; import xapi.fu.Lazy; import xapi.fu.lazy.ResettableLazy; public class ReflectionChannel implements Channel<String>{ private ClassLoader...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/launcher/VertxLauncher.java
server/src/main/java/com/google/collide/server/shared/launcher/VertxLauncher.java
package com.google.collide.server.shared.launcher; import io.vertx.core.Vertx; import io.vertx.core.buffer.Buffer; import io.vertx.core.net.NetServer; import io.vertx.core.net.NetServerOptions; import io.vertx.core.net.NetSocket; import xapi.fu.Lazy; import xapi.log.X_Log; import java.io.IOException; import java.util...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/merge/MergeChunk.java
server/src/main/java/com/google/collide/server/shared/merge/MergeChunk.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/merge/MergeResult.java
server/src/main/java/com/google/collide/server/shared/merge/MergeResult.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/merge/ConflictChunk.java
server/src/main/java/com/google/collide/server/shared/merge/ConflictChunk.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/collide/server/shared/merge/JGitMerger.java
server/src/main/java/com/google/collide/server/shared/merge/JGitMerger.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/server/src/main/java/com/google/gwt/dev/codeserver/GwtCompilerThread.java
server/src/main/java/com/google/gwt/dev/codeserver/GwtCompilerThread.java
package com.google.gwt.dev.codeserver; import collide.plugin.server.AbstractCompileThread; import collide.plugin.server.IsCompileThread; import collide.plugin.server.ReflectionChannelTreeLogger; import collide.plugin.server.gwt.CompilerBusyException; import collide.server.configuration.CollideOpts; import com.google.c...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/GwtCompileStatus.java
client/src/main/java/collide/gwtc/GwtCompileStatus.java
package collide.gwtc; public enum GwtCompileStatus { Pending, Good, Warn, Error, Fail, Success, PartialSuccess; }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/GwtcController.java
client/src/main/java/collide/gwtc/GwtcController.java
package collide.gwtc; public interface GwtcController { void onCloseClicked(); void onRefreshClicked(); void onReloadClicked(); }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/view/GwtcModuleControlView.java
client/src/main/java/collide/gwtc/view/GwtcModuleControlView.java
package collide.gwtc.view; import xapi.inject.impl.SingletonProvider; import xapi.log.X_Log; import collide.client.common.CanRunApplication; import collide.client.filetree.FileTreeController; import collide.client.filetree.FileTreeModel; import collide.client.filetree.FileTreeModelNetworkController.OutgoingController;...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/RunningGwtModule.java
client/src/main/java/collide/gwtc/ui/RunningGwtModule.java
package collide.gwtc.ui; import collide.gwtc.ui.GwtCompilerShell.View; import collide.plugin.client.terminal.TerminalLogHeader; import com.google.collide.dto.CompileResponse; import com.google.collide.dto.LogMessage; import elemental.client.Browser; import elemental.dom.Element; import elemental.html.DivElement; impor...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtClientPlugin.java
client/src/main/java/collide/gwtc/ui/GwtClientPlugin.java
package collide.gwtc.ui; import xapi.log.X_Log; import com.google.collide.client.AppContext; import com.google.collide.client.communication.FrontendApi.ApiCallback; import com.google.collide.client.communication.FrontendApi.RequestResponseApi; import com.google.collide.client.history.Place; import com.google.collide....
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtCompilePlace.java
client/src/main/java/collide/gwtc/ui/GwtCompilePlace.java
package collide.gwtc.ui; import com.google.collide.client.history.Place; import com.google.collide.client.history.PlaceConstants; import com.google.collide.client.history.PlaceNavigationEvent; import com.google.collide.client.workspace.WorkspacePlace; import com.google.collide.dto.GwtRecompile; import com.google.colli...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtController.java
client/src/main/java/collide/gwtc/ui/GwtController.java
package collide.gwtc.ui; import com.google.collide.dto.CompileResponse; import com.google.collide.dto.GwtRecompile; import com.google.gwt.core.ext.TreeLogger.Type; public interface GwtController { void onCompileButtonClicked(); void onStatusMessageReceived(CompileResponse status); void setLogLevel(Type type); ...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtCompilerService.java
client/src/main/java/collide/gwtc/ui/GwtCompilerService.java
package collide.gwtc.ui; import xapi.util.api.SuccessHandler; import com.google.collide.dto.CompileResponse; import com.google.collide.dto.GwtRecompile; public interface GwtCompilerService { void compile(GwtRecompile module, SuccessHandler<CompileResponse> response); void recompile(String module, SuccessHand...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtModuleView.java
client/src/main/java/collide/gwtc/ui/GwtModuleView.java
package collide.gwtc.ui; import xapi.gwtc.api.GwtManifest; import xapi.util.api.ReceivesValue; import xapi.util.api.RemovalHandler; import com.google.collide.client.CollideSettings; import com.google.collide.client.util.logging.Log; import com.google.collide.dto.GwtRecompile; import com.google.collide.dto.shared.Cook...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtLogView.java
client/src/main/java/collide/gwtc/ui/GwtLogView.java
package collide.gwtc.ui; import collide.client.common.CommonResources; import collide.client.util.Elements; import com.google.collide.client.util.logging.Log; import com.google.collide.dto.LogMessage; import com.google.collide.json.client.JsoArray; import com.google.collide.mvp.CompositeView; import com.google.collid...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtSettingsView.java
client/src/main/java/collide/gwtc/ui/GwtSettingsView.java
package collide.gwtc.ui; import xapi.gwtc.api.GwtManifest; import xapi.gwtc.api.OpenAction; import com.google.collide.dto.GwtRecompile; import com.google.collide.mvp.CompositeView; import com.google.common.base.Strings; import com.google.gwt.core.client.GWT; import com.google.gwt.core.ext.TreeLogger.Type; import com....
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtCompilerShell.java
client/src/main/java/collide/gwtc/ui/GwtCompilerShell.java
package collide.gwtc.ui; import collide.client.common.CommonResources; import collide.client.util.Elements; import collide.plugin.client.launcher.LauncherService; import collide.plugin.client.terminal.TerminalClientPlugin; import collide.plugin.client.terminal.TerminalService; import com.google.collide.client.AppConte...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtClasspathView.java
client/src/main/java/collide/gwtc/ui/GwtClasspathView.java
package collide.gwtc.ui; import xapi.gwtc.api.GwtManifest; import xapi.util.X_String; import collide.client.filetree.FileTreeNodeRenderer; import collide.client.util.Elements; import com.google.collide.json.client.JsoArray; import com.google.collide.json.shared.JsonArray; import com.google.collide.mvp.CompositeView; ...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtStatusListener.java
client/src/main/java/collide/gwtc/ui/GwtStatusListener.java
package collide.gwtc.ui; import com.google.collide.dto.CompileResponse; import com.google.gwt.core.ext.TreeLogger.Type; public interface GwtStatusListener { void onGwtStatusUpdate(CompileResponse status); void onLogLevelChange(String id, Type level); }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/ui/GwtCompileNavigationHandler.java
client/src/main/java/collide/gwtc/ui/GwtCompileNavigationHandler.java
package collide.gwtc.ui; import xapi.collect.X_Collect; import xapi.collect.api.IntTo; import xapi.fu.Lazy; import xapi.gwtc.api.GwtManifest; import xapi.time.impl.RunOnce; import xapi.util.api.SuccessHandler; import collide.gwtc.ui.GwtCompilerShell.Resources; import collide.gwtc.ui.GwtCompilerShell.View; import com....
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/resources/GwtcResources.java
client/src/main/java/collide/gwtc/resources/GwtcResources.java
package collide.gwtc.resources; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.ImageResource; import collide.client.filetree.FileTreeNodeRenderer; // A resource bundle is a container for css, images and other media compiled into the app. public interface GwtcResources exte...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/gwtc/resources/GwtcCss.java
client/src/main/java/collide/gwtc/resources/GwtcCss.java
package collide.gwtc.resources; import com.google.gwt.resources.client.CssResource; // An interface of css classnames. These must match .classNames in the .css file. public interface GwtcCss extends CssResource { String close(); String gwt(); String gear(); String headerContainer(); String header(); Stri...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/PluginAggregator.java
client/src/main/java/collide/plugin/PluginAggregator.java
package collide.plugin; import collide.gwtc.ui.GwtClientPlugin; import collide.plugin.client.terminal.TerminalClientPlugin; import com.google.collide.client.plugin.ClientPlugin; import com.google.collide.client.plugin.ClientPluginService; import xapi.annotation.inject.SingletonDefault; @SingletonDefault(implFor=Clien...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/PluginNavigationHandler.java
client/src/main/java/collide/plugin/client/PluginNavigationHandler.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/PluginPlace.java
client/src/main/java/collide/plugin/client/PluginPlace.java
package collide.plugin.client; import com.google.collide.client.history.Place; import com.google.collide.client.history.PlaceNavigationEvent; import com.google.collide.json.client.JsoStringMap; import com.google.collide.json.shared.JsonStringMap; public class PluginPlace extends Place{ public class NavigationEvent...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/launcher/LauncherService.java
client/src/main/java/collide/plugin/client/launcher/LauncherService.java
package collide.plugin.client.launcher; import xapi.util.api.RemovalHandler; public interface LauncherService { RemovalHandler openInIframe(String id, String url); void openInNewWindow(String id, String url); }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/inspector/ElementInspector.java
client/src/main/java/collide/plugin/client/inspector/ElementInspector.java
package collide.plugin.client.inspector; import com.google.collide.json.client.JsoArray; import elemental.client.Browser; import elemental.dom.Attr; import elemental.dom.Node; import elemental.events.Event; import elemental.events.EventListener; import elemental.js.dom.JsNode; import elemental.js.events.JsMouseEvent; ...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/inspector/InspectorPlace.java
client/src/main/java/collide/plugin/client/inspector/InspectorPlace.java
package collide.plugin.client.inspector; import xapi.fu.Lazy; import xapi.util.X_String; import com.google.collide.client.CollideSettings; import com.google.collide.client.history.Place; import com.google.collide.client.history.PlaceConstants; import com.google.collide.client.history.PlaceNavigationEvent; import com....
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/inspector/InspectorPlugin.java
client/src/main/java/collide/plugin/client/inspector/InspectorPlugin.java
package collide.plugin.client.inspector; import com.google.collide.client.AppContext; import com.google.collide.client.history.Place; import com.google.collide.client.plugin.ClientPlugin; import com.google.collide.client.plugin.FileAssociation; import com.google.collide.client.plugin.RunConfiguration; import com.googl...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/inspector/InspectorService.java
client/src/main/java/collide/plugin/client/inspector/InspectorService.java
package collide.plugin.client.inspector; import elemental.dom.Element; public interface InspectorService { void inspect(Element el); }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/common/ZIndexService.java
client/src/main/java/collide/plugin/client/common/ZIndexService.java
package collide.plugin.client.common; import collide.client.util.Elements; import com.google.common.base.Preconditions; import elemental.dom.Element; import elemental.util.ArrayOf; import elemental.util.Collections; import xapi.log.X_Log; import xapi.log.api.LogLevel; import xapi.util.api.ReceivesValue; import xapi.ut...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/terminal/TerminalService.java
client/src/main/java/collide/plugin/client/terminal/TerminalService.java
package collide.plugin.client.terminal; import com.google.collide.dto.LogMessage; public interface TerminalService { void setHeader(String module, TerminalLogHeader header); void addLog(LogMessage log, TerminalLogHeader header); }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/terminal/TerminalClientPlugin.java
client/src/main/java/collide/plugin/client/terminal/TerminalClientPlugin.java
package collide.plugin.client.terminal; import com.google.collide.client.AppContext; import com.google.collide.client.history.Place; import com.google.collide.client.history.PlaceNavigationEvent; import com.google.collide.client.plugin.ClientPlugin; import com.google.collide.client.plugin.FileAssociation; import com.g...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/terminal/TerminalNavigationHandler.java
client/src/main/java/collide/plugin/client/terminal/TerminalNavigationHandler.java
package collide.plugin.client.terminal; import xapi.collect.impl.AbstractInitMap; import xapi.collect.impl.AbstractMultiInitMap; import xapi.fu.In1Out1; import xapi.inject.impl.SingletonProvider; import xapi.util.X_String; import xapi.util.api.ConvertsValue; import xapi.util.api.HasId; import xapi.util.api.Pair; impor...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/terminal/TerminalPlace.java
client/src/main/java/collide/plugin/client/terminal/TerminalPlace.java
package collide.plugin.client.terminal; import com.google.collide.client.history.Place; import com.google.collide.client.history.PlaceConstants; import com.google.collide.client.history.PlaceNavigationEvent; import com.google.collide.dto.GwtRecompile; import com.google.collide.dto.client.DtoClientImpls.GwtRecompileImp...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/terminal/TerminalLogHeader.java
client/src/main/java/collide/plugin/client/terminal/TerminalLogHeader.java
package collide.plugin.client.terminal; import com.google.collide.dto.LogMessage; import elemental.dom.Element; /** * A simple interface to give to a {@link TerminalService} as a header element. * * @author "James X. Nelson (james@wetheinter.net)" * */ public interface TerminalLogHeader { String getName(); ...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/terminal/TerminalLogView.java
client/src/main/java/collide/plugin/client/terminal/TerminalLogView.java
package collide.plugin.client.terminal; import xapi.util.api.HasId; import collide.client.common.CommonResources; import collide.client.util.Elements; import com.google.collide.client.code.PluginContent; import com.google.collide.client.util.ResizeBounds; import com.google.collide.client.util.ResizeBounds.BoundsBuild...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/standalone/StandaloneCodeBundle.java
client/src/main/java/collide/plugin/client/standalone/StandaloneCodeBundle.java
package collide.plugin.client.standalone; import collide.client.editor.EditorToolbar; import collide.client.editor.MarkupToolbar; import collide.client.filetree.FileTreeController; import collide.client.filetree.FileTreeModel; import collide.client.util.Elements; import com.google.collide.client.AppContext; import co...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/standalone/StandaloneContext.java
client/src/main/java/collide/plugin/client/standalone/StandaloneContext.java
package collide.plugin.client.standalone; import collide.client.util.Elements; import com.google.collide.client.AppContext; import com.google.collide.client.CollideSettings; public class StandaloneContext { static StandaloneContext create(AppContext ctx) { return new StandaloneContext(ctx); } private fina...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/standalone/StandalonePlugin.java
client/src/main/java/collide/plugin/client/standalone/StandalonePlugin.java
package collide.plugin.client.standalone; import collide.client.util.Elements; import collide.plugin.client.PluginNavigationHandler; import collide.plugin.client.PluginPlace; import com.google.collide.client.AppContext; import com.google.collide.client.CollideBootstrap; import com.google.collide.client.history.History...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/standalone/StandaloneWorkspace.java
client/src/main/java/collide/plugin/client/standalone/StandaloneWorkspace.java
package collide.plugin.client.standalone; import collide.client.util.Elements; import collide.plugin.client.common.ZIndexService; import com.google.collide.client.CollideSettings; import com.google.collide.client.Resources; import com.google.collide.client.code.FileContent; import com.google.collide.client.code.NoFile...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/standalone/StandaloneConstants.java
client/src/main/java/collide/plugin/client/standalone/StandaloneConstants.java
package collide.plugin.client.standalone; public class StandaloneConstants { public static String HEADER_PANEL = "header$"; public static String FILES_PANEL = "files$"; public static String WORKSPACE_PANEL = "workspace$"; }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/plugin/client/standalone/StandaloneNavigationHandler.java
client/src/main/java/collide/plugin/client/standalone/StandaloneNavigationHandler.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/xapi/plugin/XapiPlugin.java
client/src/main/java/collide/xapi/plugin/XapiPlugin.java
package collide.xapi.plugin; import collide.gwtc.ui.GwtCompileNavigationHandler; import collide.gwtc.ui.GwtCompilerService; import collide.xapi.nav.XapiNavigationHandler; import collide.xapi.nav.XapiPlace; import com.google.collide.client.AppContext; import com.google.collide.client.history.Place; import com.google.co...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/xapi/plugin/XapiRunnerService.java
client/src/main/java/collide/xapi/plugin/XapiRunnerService.java
package collide.xapi.plugin; /** * Created by James X. Nelson (james @wetheinter.net) on 9/26/16. */ public interface XapiRunnerService { }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/xapi/nav/XapiPlace.java
client/src/main/java/collide/xapi/nav/XapiPlace.java
package collide.xapi.nav; import collide.gwtc.ui.GwtCompilePlace; import com.google.collide.client.history.Place; import com.google.collide.client.history.PlaceConstants; import com.google.collide.client.history.PlaceNavigationEvent; import com.google.collide.dto.GwtRecompile; import com.google.collide.dto.client.DtoC...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/xapi/nav/XapiNavigationHandler.java
client/src/main/java/collide/xapi/nav/XapiNavigationHandler.java
package collide.xapi.nav; import collide.xapi.nav.XapiPlace.NavigationEvent; import collide.xapi.plugin.XapiRunnerService; import com.google.collide.client.AppContext; import com.google.collide.client.history.Place; import com.google.collide.client.history.PlaceNavigationHandler; import com.google.collide.client.ui.pa...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/AppContextFileTreeController.java
client/src/main/java/collide/client/filetree/AppContextFileTreeController.java
package collide.client.filetree; import com.google.collide.client.AppContext; import com.google.collide.client.communication.FrontendApi.ApiCallback; import com.google.collide.client.communication.MessageFilter; import com.google.collide.client.status.StatusManager; import com.google.collide.dto.EmptyMessage; import c...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeContextMenuController.java
client/src/main/java/collide/client/filetree/FileTreeContextMenuController.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
true
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeNodeDataAdapter.java
client/src/main/java/collide/client/filetree/FileTreeNodeDataAdapter.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeModelNetworkController.java
client/src/main/java/collide/client/filetree/FileTreeModelNetworkController.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeInvalidatedEvent.java
client/src/main/java/collide/client/filetree/FileTreeInvalidatedEvent.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeUiController.java
client/src/main/java/collide/client/filetree/FileTreeUiController.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeNode.java
client/src/main/java/collide/client/filetree/FileTreeNode.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeNodeMoveController.java
client/src/main/java/collide/client/filetree/FileTreeNodeMoveController.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeNodeRenderer.java
client/src/main/java/collide/client/filetree/FileTreeNodeRenderer.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeUtils.java
client/src/main/java/collide/client/filetree/FileTreeUtils.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeController.java
client/src/main/java/collide/client/filetree/FileTreeController.java
package collide.client.filetree; import com.google.collide.client.code.FileTreeSection; import com.google.collide.client.communication.FrontendApi.ApiCallback; import com.google.collide.client.communication.MessageFilter; import com.google.collide.client.status.StatusManager; import com.google.collide.client.ui.dropdo...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/filetree/FileTreeModel.java
client/src/main/java/collide/client/filetree/FileTreeModel.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/editor/EditorConfiguration.java
client/src/main/java/collide/client/editor/EditorConfiguration.java
package collide.client.editor; /** * This class is a place to control the mode of operation of the editor. * * The current implementation is ...very hardcoded together, * and to inject more easily customizable control, * we will use this as the master class to expose new versions of internal components, * to do ...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/editor/EditorToolbar.java
client/src/main/java/collide/client/editor/EditorToolbar.java
package collide.client.editor; import com.google.collide.client.util.PathUtil; import com.google.collide.mvp.ShowableComponent; import com.google.collide.mvp.ShowableUiComponent; /** * Basic interface for the editor toolbar; we are going to move the legacy * implementation into {@link com.google.collide.client.code...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/editor/MarkupToolbar.java
client/src/main/java/collide/client/editor/MarkupToolbar.java
package collide.client.editor; import collide.client.util.Elements; import com.google.collide.client.AppContext; import com.google.collide.client.code.DefaultEditorToolBar; import com.google.collide.client.code.EditorBundle; import com.google.collide.client.code.FileSelectedPlace; import com.google.collide.client.code...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/editor/DefaultEditorConfiguration.java
client/src/main/java/collide/client/editor/DefaultEditorConfiguration.java
package collide.client.editor; /** * Created by James X. Nelson (james @wetheinter.net) on 7/4/17. */ public class DefaultEditorConfiguration implements EditorConfiguration { @Override public EditorToolbar getEditorToolbar() { return null; } }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/common/CanRunApplication.java
client/src/main/java/collide/client/common/CanRunApplication.java
package collide.client.common; import com.google.collide.client.util.PathUtil; public interface CanRunApplication { boolean runApplication(PathUtil applicationPath); }
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/common/CommonResources.java
client/src/main/java/collide/client/common/CommonResources.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/common/Constants.java
client/src/main/java/collide/client/common/Constants.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/treeview/Tree.java
client/src/main/java/collide/client/treeview/Tree.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
true
WeTheInternet/collide
https://github.com/WeTheInternet/collide/blob/2136cfc9705a96d88c69356868dda5b95c35bc6d/client/src/main/java/collide/client/treeview/TreeNodeLabelRenamer.java
client/src/main/java/collide/client/treeview/TreeNodeLabelRenamer.java
// Copyright 2012 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable...
java
Apache-2.0
2136cfc9705a96d88c69356868dda5b95c35bc6d
2026-01-05T02:34:36.415338Z
false