List of usage examples for com.google.gwt.core.client JavaScriptObject subclass-usage
From source file com.google.gerrit.client.info.DownloadInfo.java
public class DownloadInfo extends JavaScriptObject { public final List<String> schemes() { return _schemes().sortedKeys(); } public final List<String> archives() {
From source file com.google.gerrit.client.info.FileInfo.java
public class FileInfo extends JavaScriptObject { public final native String path() /*-{ return this.path; }-*/; public final native String oldPath() /*-{ return this.old_path; }-*/; public final native int linesInserted() /*-{ return this.lines_inserted || 0; }-*/;
From source file com.google.gerrit.client.info.GeneralPreferences.java
public class GeneralPreferences extends JavaScriptObject { public static GeneralPreferences create() { return createObject().cast(); } public static GeneralPreferences createDefault() {
From source file com.google.gerrit.client.info.GerritInfo.java
public class GerritInfo extends JavaScriptObject { public final Project.NameKey allProjectsNameKey() { return new Project.NameKey(allProjects()); } public final boolean isAllProjects(Project.NameKey p) {
From source file com.google.gerrit.client.info.GitwebInfo.java
public class GitwebInfo extends JavaScriptObject { public final native String url() /*-{ return this.url; }-*/; public final native GitwebTypeInfo type() /*-{ return this.type; }-*/; /**
From source file com.google.gerrit.client.info.GitwebTypeInfo.java
public class GitwebTypeInfo extends JavaScriptObject { /** * Replace the standard path separator ('/') in a branch name or project * name with a custom path separator configured by the property * gitweb.pathSeparator. * @param urlSegment The branch or project to replace the path separator in
From source file com.google.gerrit.client.info.GpgKeyInfo.java
public class GpgKeyInfo extends JavaScriptObject { public enum Status { BAD, OK, TRUSTED; } public final native String id() /*-{ return this.id; }-*/;
From source file com.google.gerrit.client.info.GroupBaseInfo.java
public class GroupBaseInfo extends JavaScriptObject { public final AccountGroup.UUID getGroupUUID() { return new AccountGroup.UUID(URL.decodeQueryString(id())); } public final native String id() /*-{ return this.id; }-*/;
From source file com.google.gerrit.client.info.OAuthTokenInfo.java
public class OAuthTokenInfo extends JavaScriptObject { protected OAuthTokenInfo() { } public final native String username() /*-{ return this.username; }-*/;
From source file com.google.gerrit.client.info.PushCertificateInfo.java
public class PushCertificateInfo extends JavaScriptObject { public final native String certificate() /*-{ return this.certificate; }-*/; public final native GpgKeyInfo key() /*-{ return this.key; }-*/; protected PushCertificateInfo() {