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 org.jboss.as.console.client.shared.general.model; import org.jboss.as.console.client.widgets.forms.Binding; /** * @author Heiko Braun * @date 4/19/12 */ public interface RemoteSocketBinding { @Binding(skip = true) String getName(); void setName(String name); int getPort(); void setPor...
163
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.autobean.shared.AutoBean; import com.google.gwt.autobean.shared.AutoBeanUtils; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.domain.model.SimpleCallback; import org.jboss.as.console.client.shared.dispatch.Dispatc...
1,753
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.cell.client.SafeHtmlCell; import com.google.gwt.cell.client.TextCell; import com.google.gwt.event.dom.client.ChangeEvent; import com.google.gwt.event.dom.client.ChangeHandler; import com.google.gwt.event.dom.client.KeyDownEvent; import com.googl...
1,331
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.regexp.shared.RegExp; import com.google.gwt.user.client.ui.MultiWordSuggestOracle; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.Console; import org.jboss.ballroom.client.widgets.forms.SuggestBoxItem; import org...
355
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import java.util.LinkedList; import java.util.List; /** * @author Heiko Braun * @date 11/15/11 */ public class ValidationResult { private List<String> messages = new LinkedList<String> (); private boolean success; public ValidationResult...
119
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; /** * A simple binary decision tree. * * @param <T> the data to run decisions on. */ public class DecisionTree<T> { private T entity; public class BinTree { private int nodeID; private String questOrAns = null; ...
1,688
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.shared.general.model.Interface; import java.util.Map; import java.util.Set; /** * Validates the nic constraints * * @author Heiko Braun * @date 11/15/11 */ class NicValid...
611
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; /** * @author Heiko Braun * @date 11/16/11 */ public interface Decision<T> { boolean evaluate(T entity); }
42
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.shared.general.model.Interface; import java.util.LinkedList; import java.util.List; import java.util.Map; /** * The decision tree to run interface constraint validations. * ...
1,049
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.shared.general.model.Interface; import java.util.Map; import java.util.Set; /** * Validates the primary address part of an interface declaration. * * @author Heiko Braun *...
643
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.shared.general.model.Interface; import java.util.Map; import java.util.Set; /** * Validates the loopback constraints * * @author Heiko Braun * @date 11/15/11 */ class Loo...
628
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import org.jboss.as.console.client.shared.general.model.Interface; import java.util.Map; import java.util.Set; /** * Validates the other constraints * * @author Heiko Braun * @date 11/15/11 */ class OtherConstraintsValidation extends AbstractValidat...
412
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import com.google.gwt.autobean.shared.AutoBean; import com.google.gwt.autobean.shared.AutoBeanUtils; import org.jboss.as.console.client.shared.general.model.Interface; import org.jboss.ballroom.client.widgets.forms.FormItem; import java.util.HashMap; impo...
712
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.validation; import java.util.Map; /** * @author Heiko Braun * @date 11/16/11 */ public interface ValidationStep<T> { ValidationResult validate(T entity, Map<String, Object> changedValues); boolean doesApplyTo(T entity, Map<String, Object> changedValues); }...
72
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.user.client.rpc.IsSerializable; import com.google.gwt.user.client.ui.SuggestOracle; public class SimpleSuggestion implements SuggestOracle.Suggestion, IsSerializable { private String displayString; private String replacementString; ...
199
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.forms; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.shared.general.model.RemoteSocketBinding; import org.jboss.as.console.client.shared.help.FormHelpPanel; import org.jboss.as.console.client.shared.viewframework.builder.FormLayout; i...
663
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.forms; import com.google.gwt.user.client.ui.MultiWordSuggestOracle; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.shared.general.model.LocalSocketBinding; import org.jboss.as.console.client.shared.help.FormHelpPanel; import org.jboss....
744
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.user.client.ui.SuggestOracle; /** * @author Heiko Braun * @date 2/27/12 */ public class DelegatingOracle extends SuggestOracle { private SuggestionManagement delegate; public DelegatingOracle(SuggestionManagement delegate) { ...
103
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.cell.client.FieldUpdater; import com.google.gwt.cell.client.TextCell; import com.google.gwt.user.cellview.client.CellTable; import com.google.gwt.user.cellview.client.Column; import com.google.gwt.user.cellview.client.ColumnSortEvent; import com...
752
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...
552
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.cell.client.TextCell; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.cellview.client.Column; import com.google.gwt.user.client.ui.Widget; import com.google.gwt.v...
904
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...
437
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,300
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,421
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...
4,147
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general; import com.google.gwt.cell.client.ActionCell; import com.google.gwt.user.cellview.client.CellTable; import com.google.gwt.user.cellview.client.Column; import com.google.gwt.user.cellview.client.TextColumn; import com.google.gwt.user.client.ui.Widget; import com.googl...
563
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.wizard; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.shared.general.SocketBin...
444
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.wizard; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.shared.general.SocketBin...
593
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.wizard; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.shared.general.SocketBin...
631
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.wizard; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.safehtml.shared.SafeHtmlBuilder; import com.google.gwt.user.client.ui.HTML; import com.google.gwt.user.client.ui.VerticalPanel; import...
811
github-java-corpus
2,012
package org.jboss.as.console.client.shared.general.wizard; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.shared.general.SocketBin...
455
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2012 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...
326
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,332
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...
303
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...
624
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...
598
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...
741
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...
322
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.ds; import com.google.gwt.user.client.rpc.AsyncCallback; import org.jboss.as.console.client.domain.model.SimpleCallback; import org.jboss.as.console.client.shared.dispatch.AsyncCommand; import org.jboss.as.console.client.shared.dispatch.DispatchAsync; import org.jboss...
459
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.ds; import com.google.gwt.cell.client.TextCell; import com.google.gwt.dom.client.Style; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.cellview.client.CellTable; import com.google.gwt....
1,568
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.ds; import com.google.gwt.core.client.Scheduler; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; import com.gwtplatform.mvp.client.Presenter; import com.gwtplatform.mvp.client.View; import com.gwtplatform.mvp.client.annotations.NameToken;...
1,762
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.ds; import com.google.gwt.dom.client.Style; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.core.SuspendableViewImpl; import org.jboss.as.console.client.shared.runtime.Metric; import org.jboss.as.console.client.shared.subsys.jca.model.D...
465
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.plain; import com.google.gwt.dom.client.Style; import com.google.gwt.user.client.ui.FlexTable; import com.google.gwt.user.client.ui.HTML; import com.google.gwt.user.client.ui.HasHorizontalAlignment; import com.google.gwt.user.client.ui.VerticalPanel; import com.google...
1,322
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.web; import com.google.gwt.core.client.Scheduler; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; import com.gwtplatform.mvp.client.Presenter; import com.gwtplatform.mvp.client.View; import com.gwtplatform.mvp.client.annotations.NameToken...
1,097
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.web; import com.google.gwt.cell.client.TextCell; import com.google.gwt.dom.client.Style; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.Widget; import com.google.gwt.view.cli...
1,103
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jpa; import com.google.gwt.dom.client.Style; import com.google.gwt.user.client.ui.LayoutPanel; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.core.SuspendableViewImpl; import org.jboss.as.con...
649
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jpa; import org.jboss.as.console.client.shared.runtime.Metric; /** * @author Heiko Braun * @date 1/20/12 */ public class UnitMetric { private Metric txMetric; private Metric queryMetric; private Metric queryExecMetric; private Metric secondLevelC...
277
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jpa; import com.google.gwt.core.client.Scheduler; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; import com.gwtplatform.mvp.client.Presenter; import com.gwtplatform.mvp.client.View; import com.gwtplatform.mvp.client.annotations.NameToken...
2,553
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jpa; import com.google.gwt.dom.client.Style; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.HTML; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.us...
1,556
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jpa.model; import org.jboss.as.console.client.widgets.forms.Binding; /** * @author Heiko Braun * @date 1/19/12 */ public interface JPADeployment { @Binding(skip = true) String getDeploymentName(); void setDeploymentName(String name); @Binding(ski...
114
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jpa; import com.google.gwt.cell.client.ActionCell; import com.google.gwt.cell.client.ImageResourceCell; import com.google.gwt.resources.client.ImageResource; import com.google.gwt.user.cellview.client.Column; import com.google.gwt.user.cellview.client.TextColumn; impo...
1,286
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,196
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...
494
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,443
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
package org.jboss.as.console.client.shared.runtime.vm; /** * @author Heiko Braun * @date 10/7/11 */ public interface VMMetricsManagement { void refresh(); }
41
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.vm; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.shared.help.StaticHelpPanel; import org.jboss.as.console.client.shared.runtime.Metric; import org.jboss.as.console.client.shared.runtime.Sam...
481
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.vm; import com.google.gwt.user.client.ui.Widget; import com.google.gwt.visualization.client.visualizations.corechart.AxisOptions; import com.google.gwt.visualization.client.visualizations.corechart.LineChart; import com.google.gwt.visualization.client.visualizations.c...
1,219
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.vm; import com.gwtplatform.mvp.client.View; import org.jboss.as.console.client.shared.jvm.model.OSMetric; import org.jboss.as.console.client.shared.jvm.model.RuntimeMetric; import org.jboss.as.console.client.shared.runtime.Metric; /** * @author Heiko Braun * @date ...
142
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jms; import com.google.gwt.core.client.Scheduler; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; import com.gwtplatform.mvp.client.Presenter; import com.gwtplatform.mvp.client.View; import com.gwtplatform.mvp.client.annotations.NameToken...
1,798
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jms; import com.google.gwt.cell.client.TextCell; import com.google.gwt.dom.client.Style; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.cellview.client.CellTable; import com.google.gwt...
1,420
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jms; import com.google.gwt.dom.client.Style; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.core.SuspendableViewImpl; import org.jboss.as.console.client.shared.runtime.Metric; import org.jboss.as.console.client.shared.subsys.messaging....
539
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.jms; import com.google.gwt.cell.client.TextCell; import com.google.gwt.dom.client.Style; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.cellview.client.CellTable; import com.google.gwt...
1,581
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.ws; import com.google.gwt.core.client.Scheduler; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; import com.gwtplatform.mvp.client.Presenter; import com.gwtplatform.mvp.client.View; import com.gwtplatform.mvp.client.annotations.NameToken;...
677
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.ws; import com.google.gwt.user.cellview.client.TextColumn; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.core.SuspendableViewImpl; import org.jboss.as.console.client.shared.subsys.ws.model.W...
692
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime; import java.util.LinkedList; import java.util.List; /** * @author Heiko Braun * @date 11/3/11 */ public class Metric { private List<String> values = new LinkedList<String>(); public Metric(String... values) { for(String s : values) a...
212
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.tx; import com.google.gwt.dom.client.Style; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.shared.help.HelpSystem; import org.jboss.as.console.client.shared.runtime.Metric; import org.jboss.a...
577
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.tx; import com.google.gwt.core.client.Scheduler; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; import com.gwtplatform.mvp.client.Presenter; import com.gwtplatform.mvp.client.annotations.NameToken; import com.gwtplatform.mvp.client.annot...
972
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.tx; import com.google.gwt.dom.client.Style; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.shared.help.HelpSystem; import org.jboss.as.console.client.shared.runtime.Metric; import org.jboss.a...
541
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.tx; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.Widget; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.core.SuspendableViewImpl; import org...
467
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.tx; import com.gwtplatform.mvp.client.View; import org.jboss.as.console.client.shared.runtime.Metric; /** * @author Heiko Braun * @date 11/3/11 */ public interface TXMetricView extends View { void setPresenter(TXMetricManagement presenter); void setTxMetri...
88
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.tx; /** * @author Heiko Braun * @date 11/3/11 */ public interface TXMetricManagement { void refresh(); }
40
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.user.client.ui.Widget; /** * @author Heiko Braun * @date 9/29/11 */ public abstract class AbstractChartView { protected int width = 400; protected int height = 240; protected String title; public AbstractChartView(S...
127
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Widget; import com.google.gwt.visualization.client.AbstractDataTable; import com.google.gwt.visualization.client.DataTable; import com.google.gwt.visualization.client.visu...
743
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.visualization.client.AbstractDataTable; /** * @author Heiko Braun * @date 1/19/12 */ public class TextColumn extends Column<String> { public TextColumn(String detypedName, String label) { super(AbstractDataTable.ColumnTyp...
102
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.visualization.client.AbstractDataTable; /** * @author Heiko Braun * @date 11/3/11 */ public abstract class Column<T> { protected AbstractDataTable.ColumnType type; protected String label; protected Column comparisonColumn...
315
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.visualization.client.DataTable; import java.util.Date; /** * @author Heiko Braun * @date 11/3/11 */ public class DataTableAdapter { DataTable delegate; public DataTableAdapter(DataTable delegate) { this.delegate = d...
213
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.visualization.client.AbstractDataTable; /** * @author Heiko Braun * @date 11/3/11 */ public class NumberColumn extends Column<Integer> { public NumberColumn(String detypedName, String label) { super(AbstractDataTable.Colu...
107
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.safehtml.shared.SafeHtmlBuilder; import com.google.gwt.user.client.Element; import com.google.gwt.user.client.ui.HTMLPanel; import com.google.gwt.user.client.ui.Widget; /** * @author Heiko Braun * @date 12/8/11 */ public class Stacked...
416
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime.charts; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Widget; import com.google.gwt.visualization.client.AbstractDataTable; import com.google.gwt.visualization.client.DataTable; import com.google.gwt.visualization.client.visu...
743
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime; import com.google.gwt.user.client.ui.Widget; /** * @author Heiko Braun * @date 10/25/11 */ public interface Sampler { Widget asWidget(); void addSample(Metric metric); void clearSamples(); long numSamples(); void recycle(); }
69
github-java-corpus
2,012
package org.jboss.as.console.client.shared.runtime; import org.jboss.as.console.client.shared.state.CurrentServerSelection; import org.jboss.dmr.client.ModelNode; import javax.inject.Inject; /** * @author Heiko Braun * @date 12/9/11 */ public class RuntimeBaseAddress { @Inject private static CurrentServerSel...
191
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 mad...
3,007
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...
544
github-java-corpus
2,012
package org.jboss.as.console.client.shared.schedule; import com.google.gwt.core.client.Scheduler; import com.google.gwt.user.client.ui.PopupPanel; import org.jboss.as.console.client.Console; import org.jboss.as.console.client.domain.model.SimpleCallback; import org.jboss.as.console.client.shared.dispatch.AsyncCommand;...
362
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...
572
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...
592
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,082
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...
564
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...
309
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,624
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...
633
github-java-corpus
2,012
package org.jboss.as.console.client.domain.profiles; import com.google.gwt.core.client.Scheduler; import com.google.gwt.event.logical.shared.ValueChangeEvent; import com.google.gwt.event.logical.shared.ValueChangeHandler; import com.google.gwt.user.client.ui.Label; import com.google.gwt.user.client.ui.VerticalPanel; i...
527
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...
446
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...
854
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...
545
github-java-corpus
2,012
package org.jboss.as.console.client.domain.model; /** * @author Heiko Braun * @date 1/18/12 */ public enum ServerFlag { RELOAD_REQUIRED, RESTART_REQUIRED }
44
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...
344