Source
stringclasses
1 value
Date
int32
2.01k
2.01k
Text
stringlengths
3
15.9M
Token_count
int32
1
2.44M
github-java-corpus
2,012
package hudson.plugins.jswidgets; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; import hudson.model.Node; import hudson.scm.EditType; import hudson.scm.ChangeLogSet.AffectedFile; import hudson.scm.ChangeLogSet.Entry; import java.util.ArrayList; import java.util.Collection; import java.util.H...
729
github-java-corpus
2,012
package hudson.plugins.jswidgets; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; import java.util.List; import java.util.logging.Logger; /** * This class implements the JS widgets pages for a job. * * @author mfriedenhagen */ public class JsJobAction extends JsBaseAction { /** The ...
468
github-java-corpus
2,012
/** * <p>This package contains all classes for the * <a href="http://wiki.hudson-ci.org/display/HUDSON/JSWidgets+Plugin">JSWidgets Plugin</a>.</p> * * <p>The widgets do only render information generated by other Plugins or the core.</p> * * <p>A note about Logging:</p> * <ul> * <li><tt>LOG.fine</tt> is used, ...
162
github-java-corpus
2,012
package hudson.plugins.jswidgets; /** * Holder for constants. * * @author mfriedenhagen */ public final class JsConsts { /** * Holder for constants. */ private JsConsts() { // Holder for constants } /** Display name. */ public static final String DISPLAYNAME = "JS Widge...
133
github-java-corpus
2,012
package hudson.plugins.jswidgets; import hudson.Extension; import hudson.model.Hudson; import hudson.model.RootAction; import hudson.util.RunList; import org.kohsuke.stapler.StaplerRequest; /** * Implements methods for javascript root widgets. * * @author mfriedenhagen */ @Extension public class JsRootAction ex...
346
github-java-corpus
2,012
package hudson.plugins.jswidgets; import hudson.Extension; import hudson.model.AbstractProject; import hudson.model.Action; import hudson.model.TransientProjectActionFactory; import java.util.List; import java.util.ArrayList; import java.util.Collection; import java.util.logging.Logger; /** * Extends project action...
263
github-java-corpus
2,012
/** * */ package hudson.plugins.jswidgets; import static org.junit.Assert.assertArrayEquals; import hudson.model.Hudson; import hudson.model.Project; import hudson.model.User; import hudson.scm.ChangeLogSet; import hudson.scm.ChangeLogSet.Entry; import java.io.File; import java.io.IOException; import java.util.Arra...
2,922
github-java-corpus
2,012
package org.jboss.as.console.client.plugins; import java.util.List; /** * @author Heiko Braun * @date 3/27/12 */ public interface RuntimeExtensionRegistry { public List<RuntimeExtensionMetaData> getExtensions(); }
50
github-java-corpus
2,012
package org.jboss.as.console.client.plugins; /** * @author Heiko Braun * @date 3/26/12 */ public class SubsystemExtensionMetaData { private String token; private String name; private String group; private String key; public SubsystemExtensionMetaData(String name, String token, String group, Str...
149
github-java-corpus
2,012
package org.jboss.as.console.client.plugins; import java.util.List; /** * @author Heiko Braun * @date 3/27/12 */ public interface SubsystemRegistry { public List<SubsystemExtensionMetaData> getExtensions(); }
50
github-java-corpus
2,012
package org.jboss.as.console.client.plugins; /** * @author Heiko Braun * @date 9/11/12 */ public class RuntimeGroup { public final static String METRICS = "metrics"; public final static String OPERATiONS = "operations"; }
57
github-java-corpus
2,012
package org.jboss.as.console.client.plugins; /** * @author Heiko Braun * @date 3/26/12 */ public class RuntimeExtensionMetaData { private String token; private String name; private String group; private String key; public RuntimeExtensionMetaData(String name, String token, String group, String...
147
github-java-corpus
2,012
package org.jboss.as.console.spi; import freemarker.template.Configuration; import freemarker.template.DefaultObjectWrapper; import freemarker.template.Template; import java.io.OutputStream; import java.io.PrintWriter; import java.util.Map; /** * @author Heiko Braun * @date 3/27/12 */ public class TemplateProcess...
170
github-java-corpus
2,012
package org.jboss.as.console.spi; import org.jboss.as.console.client.plugins.RuntimeGroup; /** * @author Heiko Braun * @date 3/26/12 */ @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE}) public @interface RuntimeExtens...
89
github-java-corpus
2,012
package org.jboss.as.console.spi; /** * @author Heiko Braun * @date 3/27/12 */ @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE}) public @interface GinExtension { /** * @return the GWT module name containing t...
93
github-java-corpus
2,012
package org.jboss.as.console.spi; /** * @author Heiko Braun * @date 3/26/12 */ @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE}) public @interface SubsystemExtension { String name(); String group() default ""; ...
75
github-java-corpus
2,012
package org.jboss.as.console.spi; /** * @author Heiko Braun * @date 3/28/12 */ @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE}) public @interface BeanFactoryExtension { }
61
github-java-corpus
2,012
package org.jboss.as.console.spi; /** * @author Heiko Braun * @date 3/23/12 */ @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE}) public @interface GinExtensionBinding { }
61
github-java-corpus
2,012
package org.jboss.as.console.spi; /** * @author Heiko Braun * @date 3/26/12 */ public class ExtensionDeclaration { private String type; public ExtensionDeclaration(String type) { this.type = type; } public String getType() { return type; } }
65
github-java-corpus
2,012
package org.jboss.as.console.spi; import com.gwtplatform.mvp.client.annotations.NameToken; import org.jboss.as.console.client.plugins.RuntimeExtensionMetaData; import org.jboss.as.console.client.plugins.SubsystemExtensionMetaData; import javax.annotation.processing.AbstractProcessor; import javax.annotation.processin...
3,201
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
667
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
5,503
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
435
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
701
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
991
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
301
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made av...
821
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
520
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made av...
493
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made av...
404
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
305
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
2,211
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
306
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made av...
554
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made av...
635
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
498
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made av...
440
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
919
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
316
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
463
github-java-corpus
2,012
package org.jboss.as.console.client; import org.jboss.as.console.client.core.BootstrapContext; import org.junit.Test; import static junit.framework.Assert.*; /** * @author Heiko Braun * @date 7/25/11 */ public class BootstrapTest { static String[] defaultUrls = new String[] { "http://localhost:999...
216
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
720
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
763
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
397
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,642
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
536
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
285
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
409
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
410
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,275
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
522
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,393
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
890
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
883
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
255
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,257
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
14,094
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
638
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,872
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
761
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
387
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
700
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,015
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
782
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
271
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,394
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
9,991
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,891
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,809
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
282
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,317
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
780
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
2,098
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
740
github-java-corpus
2,012
/* * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell...
2,359
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
838
github-java-corpus
2,012
package org.jboss.ballroom.client.layout; import com.google.gwt.user.client.ui.TreeItem; /** * A tree item used with the LHS nav that doesn't reference any views. * Used to group items. * * @author Heiko Braun * @date 11/9/11 */ public class DefaultTreeItem extends TreeItem { public DefaultTreeItem(String ...
185
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,528
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
797
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
281
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made a...
878
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
970
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made a...
1,080
github-java-corpus
2,012
package org.jboss.as.console.client; /** * @author Heiko Braun * @date 9/24/12 */ public interface ProductConfig { public enum Profile {JBOSS, EAP} Profile getProfile(); String getProductTitle(); String getProductVersion(); String getCoreVersion(); String getDevHost(); }
71
github-java-corpus
2,012
package org.jboss.as.console.client.core; import com.google.gwt.http.client.URL; import com.google.inject.Inject; import com.gwtplatform.mvp.client.proxy.PlaceRequest; import com.gwtplatform.mvp.client.proxy.TokenFormatException; import com.gwtplatform.mvp.client.proxy.TokenFormatter; import java.util.ArrayList; impo...
2,822
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
682
github-java-corpus
2,012
package org.jboss.as.console.client.core; import com.google.gwt.user.client.Command; import com.google.gwt.user.client.Window; import org.jboss.as.console.client.Console; /** * @author Heiko Braun * @date 2/13/12 */ public class LogoutCmd implements Command { @Override public void execute() { Strin...
136
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
366
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
370
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,098
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
335
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
624
github-java-corpus
2,012
package org.jboss.as.console.client.core.message; /** * @author Heiko Braun * @date 3/27/12 */ public interface MessageListener { void onMessage(Message message); }
41
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
628
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
2,826
github-java-corpus
2,012
package org.jboss.as.console.client.core.message; import java.util.List; /** * @author Heiko Braun * @date 3/27/12 */ public interface MessageCenter { void notify(Message message); void addMessageListener(MessageListener listener); List<Message> getMessages(); int getNewMessageCount(); }
68
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
717
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
1,157
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
661
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
286