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 com.ocpsoft.socialpm.gwt.client.local.view.profile; import java.util.List; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout; import com.ocpsoft.socialpm.model.project.Project; import com.ocpsoft.socialpm.model.user.Profile; public interface ProfileView extends FixedLayout { public interface P...
119
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view; import com.google.gwt.place.shared.Place; public interface NavigationCapable { void goTo(Place place); };
35
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.view; import javax.enterprise.context.ApplicationScoped; import com.google.inject.Inject; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayoutView; import com.ocpsoft.socialpm.gwt.client.local.view.component.BreadCrumb; import com.ocpsoft.socialpm.gw...
734
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.view; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import com.google.gwt.place.shared.Place; import com.ocpsoft.socialpm.gwt.client.local.history.HistoryConstants; import com.ocpsoft.socialpm.gwt.client.local.places.TypedPlaceTo...
321
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.view; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.jboss.errai.bus.client.api.RemoteCallback; import com.google.gwt.activity.shared.AbstractActivity; import com.google.gwt.event.shared.EventBus; import com.google.gwt.plac...
380
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.view; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout.FixedPresenter; import com.ocpsoft.socialpm.model.project.Project; public interface ProjectView extends FixedLayout { public ...
97
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.create; import javax.enterprise.context.ApplicationScoped; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.event.dom.client.KeyCodes; import com.google.gwt.event.dom.client.KeyPress...
716
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.create; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout.FixedPresenter; public interface NewProjectView extends FixedLayout { public interface Presenter extends FixedPresenter ...
113
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.create; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.jboss.errai.bus.client.api.ErrorCallback; import org.jboss.errai.bus.client.api.Message; import org.jboss.errai.bus.client.api.RemoteCallback; import org.jboss.errai.ioc...
676
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.project.create; import com.google.gwt.place.shared.Place; import com.ocpsoft.socialpm.gwt.client.local.history.HistoryConstants; import com.ocpsoft.socialpm.gwt.client.local.places.TypedPlaceTokenizer; public class NewProjectPlace extends Place { private final Str...
214
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.events; import com.google.gwt.event.shared.EventHandler; public interface DisplayHandler extends EventHandler { /** * Called when a native display event is fired. * * @param event the {@link DisplayEvent} that was fired */ public void handleOnD...
73
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.events; import com.google.gwt.user.client.ui.Widget; public abstract class TemplateEvent { private Widget source; public TemplateEvent(Widget source) { this.source = source; } /** * Get the source {@link Widget} from which this event was...
90
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.events; import com.ocpsoft.socialpm.model.user.Profile; public class LoginEvent { private final Profile profile; public LoginEvent(Profile profile) { this.profile = profile; } public Profile getProfile() { return profile; } }
68
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.events; import com.google.gwt.event.shared.EventHandler; public interface OnHideHandler extends EventHandler { /** * Called when a native hide event is fired. * * @param event the {@link HideEvent} that was fired */ public void handleOnHide(Hid...
75
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.events; import com.google.gwt.user.client.ui.Widget; public class HideEvent extends TemplateEvent { public HideEvent(Widget source) { super(source); } }
48
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.events; import com.google.gwt.user.client.ui.Widget; public class DisplayEvent extends TemplateEvent { public DisplayEvent(Widget source) { super(source); } }
48
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.events; /** * Fired when a logout is requested. * * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> */ public class LogoutEvent { public LogoutEvent() {} }
63
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.home; import com.google.gwt.user.client.ui.Anchor; import com.google.gwt.user.client.ui.ComplexPanel; import com.google.gwt.user.client.ui.TextBox; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLa...
241
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.home; import com.google.gwt.place.shared.Place; import com.ocpsoft.socialpm.gwt.client.local.history.HistoryConstants; import com.ocpsoft.socialpm.gwt.client.local.places.TypedPlaceTokenizer; public class HomePlace extends Place { private final String token; ...
233
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.home; import javax.enterprise.context.ApplicationScoped; import javax.enterprise.event.Observes; import javax.inject.Inject; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.event.dom.client...
892
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.home; import java.util.List; import javax.enterprise.context.Dependent; import javax.enterprise.event.Observes; import javax.inject.Inject; import org.jboss.errai.bus.client.api.ErrorCallback; import org.jboss.errai.bus.client.api.Message; import org.jboss.errai.bus...
549
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.forms; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.jboss.errai.bus.client.api.RemoteCallback; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.cli...
480
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.forms; import com.google.gwt.text.shared.AbstractRenderer; import com.ocpsoft.socialpm.model.project.iteration.Iteration; public class IterationRenderer extends AbstractRenderer<Iteration> { @Override public String render(Iteration object) { if (object...
88
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.forms; import com.google.gwt.core.client.GWT; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.Composite; import com.google.gwt.user.client....
502
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.forms; import com.google.gwt.text.shared.AbstractRenderer; import com.ocpsoft.socialpm.model.user.Profile; public class ProfileRenderer extends AbstractRenderer<Profile> { @Override public String render(Profile object) { if (object == null) re...
75
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.forms; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.jboss.errai.bus.client.api.RemoteCallback; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.cli...
635
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.presenter; import com.ocpsoft.socialpm.gwt.client.local.view.events.LoginEvent; import com.ocpsoft.socialpm.gwt.client.local.view.events.LogoutEvent; public interface AuthenticationAware { void handleLogin(LoginEvent event); void handleLogout(LogoutEvent event...
68
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.login; import javax.enterprise.context.ApplicationScoped; import javax.inject.Inject; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.event.dom.client.KeyCodes; import com.google.gwt.event....
416
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.login; import javax.inject.Inject; import org.jboss.errai.ui.shared.api.annotations.DataField; import org.jboss.errai.ui.shared.api.annotations.Templated; import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.Element; import com.google.gwt.user.cl...
318
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.login; import javax.enterprise.context.Dependent; import javax.enterprise.event.Observes; import javax.inject.Inject; import org.jboss.errai.bus.client.api.ErrorCallback; import org.jboss.errai.bus.client.api.Message; import org.jboss.errai.bus.client.api.RemoteCallb...
571
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.login; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout; public interface LoginView extends FixedLayout { public interface Presenter extends FixedLayout.FixedPresenter { void doLogin(String username, String password); } void focusUsern...
92
github-java-corpus
2,012
/** * Copyright 2012 Red Hat, Inc. and/or its affiliates. * * Licensed under the Eclipse Public License Version 1.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.eclipse.org/legal/epl-v10.html * * Unless requi...
318
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.view; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.jboss.errai.bus.client.api.RemoteCallback; import com.google.gwt.activity.shared.AbstractActivity; import com.google.gwt.event.shared.EventBus; import com.google.gwt.place....
417
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.view; import javax.enterprise.context.ApplicationScoped; import javax.inject.Inject; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.user.client.ui.HTMLPanel; import com.ocpsoft.socia...
1,231
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.view; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import com.google.gwt.place.shared.Place; import com.ocpsoft.socialpm.gwt.client.local.history.HistoryConstants; import com.ocpsoft.socialpm.gwt.client.local.places.TypedPlaceToke...
406
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.view; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout.FixedPresenter; import com.ocpsoft.socialpm.model.project.story.Story; public interface StoryView extends FixedLayout { public ...
100
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.create; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import com.google.gwt.place.shared.Place; import com.ocpsoft.socialpm.gwt.client.local.history.HistoryConstants; import com.ocpsoft.socialpm.gwt.client.local.places.TypedPlaceTo...
336
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.create; import javax.enterprise.context.ApplicationScoped; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayoutView; import com.ocpsoft.socialpm.gwt...
470
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.create; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.jboss.errai.bus.client.api.RemoteCallback; import com.google.gwt.activity.shared.AbstractActivity; import com.google.gwt.event.shared.EventBus; import com.google.gwt.plac...
514
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.view.story.create; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout; import com.ocpsoft.socialpm.gwt.client.local.view.FixedLayout.FixedPresenter; import com.ocpsoft.socialpm.model.project.Project; import com.ocpsoft.socialpm.model.project.story.Story; publ...
126
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local; import javax.enterprise.context.ApplicationScoped; import javax.inject.Inject; import org.jboss.errai.ioc.client.api.Caller; import com.ocpsoft.socialpm.gwt.client.shared.rpc.AuthenticationService; import com.ocpsoft.socialpm.gwt.client.shared.rpc.ProfileService; import...
234
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local; import com.google.gwt.event.shared.EventBus; import com.google.gwt.place.shared.PlaceController; public interface ClientFactory { EventBus getEventBus(); PlaceController getPlaceController(); /* * Factories */ EventsFactory getEventFactory(); Se...
71
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local; import java.util.ArrayList; import java.util.List; import javax.enterprise.context.ApplicationScoped; import javax.enterprise.inject.Produces; import javax.inject.Inject; import org.jboss.errai.ioc.client.container.IOCBeanManager; import org.ocpsoft.rewrite.gwt.client.h...
1,313
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local; import javax.enterprise.context.ApplicationScoped; import javax.enterprise.event.Event; import javax.inject.Inject; import com.ocpsoft.socialpm.gwt.client.local.view.events.LoginEvent; import com.ocpsoft.socialpm.gwt.client.local.view.events.LogoutEvent; import com.ocpso...
200
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local; import javax.enterprise.context.ApplicationScoped; import javax.inject.Inject; import com.google.gwt.event.shared.EventBus; import com.google.gwt.event.shared.SimpleEventBus; import com.google.gwt.place.shared.PlaceController; @ApplicationScoped public class ClientFacto...
204
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.client.local.places; import com.google.gwt.place.shared.Place; import com.google.gwt.place.shared.PlaceTokenizer; public interface TypedPlaceTokenizer<P extends Place> extends PlaceTokenizer<P> { public Class<P> getPlaceType(); }
54
github-java-corpus
2,012
/** * This file is part of OCPsoft SocialPM: Agile Project Management Tools (SocialPM) * * Copyright (c)2011 Lincoln Baxter, III <lincoln@ocpsoft.com> (OCPsoft) * Copyright (c)2011 OCPsoft.com (http://ocpsoft.com) * * If you are developing and distributing open source applications under * the GNU General Public ...
1,282
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.rpc; import java.io.Serializable; import javax.enterprise.context.RequestScoped; import javax.persistence.EntityManager; import javax.persistence.NoResultException; import javax.persistence.PersistenceContext; import javax.persistence.PersistenceContextType; import javax.persis...
580
github-java-corpus
2,012
/** * This file is part of OCPsoft SocialPM: Agile Project Management Tools (SocialPM) * * Copyright (c)2011 Lincoln Baxter, III <lincoln@ocpsoft.com> (OCPsoft) * Copyright (c)2011 OCPsoft.com (http://ocpsoft.com) * * If you are developing and distributing open source applications under * the GNU General Public ...
1,377
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.rpc; import java.io.IOException; import java.io.Serializable; import javax.enterprise.context.SessionScoped; import javax.enterprise.event.Observes; import javax.enterprise.inject.Produces; import javax.inject.Inject; import javax.persistence.EntityManager; import javax.persist...
812
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.history; import javax.servlet.ServletContext; import org.ocpsoft.logging.Logger; import org.ocpsoft.rewrite.config.Configuration; import org.ocpsoft.rewrite.config.ConfigurationBuilder; import org.ocpsoft.rewrite.context.EvaluationContext; import org.ocpsoft.rewrite.servlet.con...
373
github-java-corpus
2,012
/** * This file is part of OCPsoft SocialPM: Agile Project Management Tools (SocialPM) * * Copyright (c)2011 Lincoln Baxter, III <lincoln@ocpsoft.com> (OCPsoft) * Copyright (c)2011 OCPsoft.com (http://ocpsoft.com) * * If you are developing and distributing open source applications under * the GNU General Public ...
1,550
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.security.authentication; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.PARAMETER; import static java.lang.annotation.ElementType.TYPE; import static java.lang.annotation...
157
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.security; import javax.inject.Inject; import org.jboss.seam.security.Identity; import org.jboss.seam.security.annotations.Secures; import com.ocpsoft.socialpm.gwt.client.shared.rpc.ProfileService; import com.ocpsoft.socialpm.gwt.server.security.authorization.ProfileBinding; im...
244
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.security.authorization; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.jboss.seam.security.annotations.SecurityPa...
96
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.security.authorization; import org.jboss.seam.security.AuthorizationException; import org.jboss.solder.exception.control.CaughtException; import org.jboss.solder.exception.control.Handles; import org.jboss.solder.exception.control.HandlesExceptions; import org.ocpsoft.logging.Lo...
120
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.security.authorization; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.jboss.seam.security.annotations.SecurityBindingType; @SecurityBindingType @Retent...
82
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.security.authorization; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.jboss.seam.security.annotations.SecurityBindingType; @SecurityBindingType @Retent...
81
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.security.authorization; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.jboss.seam.security.annotations.SecurityPa...
96
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.rewrite; import javax.servlet.ServletContext; import org.ocpsoft.logging.Logger; import org.ocpsoft.rewrite.config.Configuration; import org.ocpsoft.rewrite.config.ConfigurationBuilder; import org.ocpsoft.rewrite.param.Transform; import org.ocpsoft.rewrite.servlet.config.Forwar...
163
github-java-corpus
2,012
/* * Copyright 2009 JBoss, a division of Red Hat Hat, Inc * * 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 app...
289
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.util; import java.io.Serializable; import java.util.List; import javax.ejb.TransactionAttribute; import javax.persistence.EntityManager; import javax.persistence.NoResultException; import javax.persistence.Query; import javax.persistence.criteria.CriteriaBuilder; import javax.p...
924
github-java-corpus
2,012
package com.ocpsoft.socialpm.gwt.server.util; import java.beans.BeanInfo; import java.beans.Introspector; import java.beans.PropertyDescriptor; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.util.ArrayList; import ja...
5,578
github-java-corpus
2,012
/** * This file is part of OCPsoft SocialPM: Agile Project Management Tools (SocialPM) * * Copyright (c)2011 Lincoln Baxter, III <lincoln@ocpsoft.com> (OCPsoft) * Copyright (c)2011 OCPsoft.com (http://ocpsoft.com) * * If you are developing and distributing open source applications under * the GNU General Publ...
478
github-java-corpus
2,012
public class Data { public int datum; public DataType dType; public Data(int datum, DataType dType) { this.datum = datum; this.dType = dType; } }
46
github-java-corpus
2,012
import java.util.ArrayList; import java.sql.Date; import java.math.*; public class Node { ArrayList<Packet> interests = new ArrayList<Packet>(); // interests to be sent along ArrayList<Packet> exploratoryData = new ArrayList<Packet>(); // exploratory data to be sent along ArrayList<Packet> reinforc...
3,471
github-java-corpus
2,012
public enum DataType { TYPEA, TYPEB, TYPEC }
16
github-java-corpus
2,012
import java.util.Timer; import java.util.TimerTask; public class ExpDataSend { Timer m_timer=null; public ExpDataSend(long a_interval, Node a_node, Interest a_interest) { if(checkInterest(a_node,a_interest))//If true set the interval for sending Exploratory Data { m_timer = new Timer(); ...
314
github-java-corpus
2,012
import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Timer; import java.util.TimerTask; import EDReceive.Sender; public class RnFDataSend { Timer m_timer=null; Node sourceNode= null; Long interval = null; PacketTransmitter pktTrans = new PacketTransmitter(); ...
334
github-java-corpus
2,012
public class Packet implements Cloneable { public PacketType pType; // which of the four from the PacketType enum. public Node sender; // The Node which sent this packet. public long id; // id of the initial request; each has a unique id. This is simply a time-stamp. public boolean ifsent; // so...
285
github-java-corpus
2,012
import java.awt.Point; import java.util.ArrayList; import java.util.Collections; import java.math.BigInteger; import java.sql.Date; import java.io.*; import java.util.Collection; import java.util.List; public class NodeTest { static int dimension = 10, numNodes = 50, radioRange = 4; //will be set by user ...
1,414
github-java-corpus
2,012
public enum PacketType { EXPLORATORYDATA, INTEREST, REINFORCEMENT, REINFORCEDDATA }
28
github-java-corpus
2,012
import java.io.*; public class OutputMaker { private PrintWriter writer; public OutputMaker(String FileName) throws IOException { writer = new PrintWriter(new BufferedWriter(new FileWriter(FileName))); } public void AddOutput(String Output) { writer.print(Output); writer.flush(); } publi...
137
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
233
github-java-corpus
2,012
/** * Copyright (c) 2009 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
772
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
720
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
576
github-java-corpus
2,012
/** * Copyright (c) 2009 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
1,961
github-java-corpus
2,012
/** * Copyright (c) 2010 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
2,762
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
323
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
143
github-java-corpus
2,012
/** * Copyright (c) 2010 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
395
github-java-corpus
2,012
/** * Copyright (c) 2009 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
1,510
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
144
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
856
github-java-corpus
2,012
/** * Copyright (c) 2009 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
1,023
github-java-corpus
2,012
/** * Copyright (c) 2009 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
1,051
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
426
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
535
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
547
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
2,121
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
2,061
github-java-corpus
2,012
/** * Copyright (c) 2011 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
275
github-java-corpus
2,012
/** * Copyright (c) 2010 Stephen Evanchik * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Stephen...
407
github-java-corpus
2,012
/* * Copyright (c) 2008 Neil Bartlett * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Neil Bar...
960
github-java-corpus
2,012
/* * Copyright (c) 2008 Neil Bartlett * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Neil Bar...
396
github-java-corpus
2,012
/* * Copyright (c) 2008 Neil Bartlett * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Neil Bar...
1,393
github-java-corpus
2,012
/* * Copyright (c) 2008 Neil Bartlett * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Neil Bar...
400
github-java-corpus
2,012
/* * Copyright (c) 2008 Neil Bartlett * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Neil Bar...
200
github-java-corpus
2,012
/* * Copyright (c) 2008 Neil Bartlett * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Neil Bar...
249