Skip to content

Commit

Permalink
Remove non-javadoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanEwen committed Dec 18, 2013
1 parent d18e0bc commit f76231c
Show file tree
Hide file tree
Showing 318 changed files with 1,070 additions and 3,435 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ public abstract class CoGroupFunction extends AbstractArrayModelFunction impleme
@Override
public abstract void coGroup(Iterator<Value[]> records1, Iterator<Value[]> records2, Collector<Value[]> out);

/* (non-Javadoc)
* @see eu.stratosphere.pact.array.stubs.AbstractArrayModelStub#getUDFMethod()
*/
@Override
public Method getUDFMethod() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ public abstract class CrossFunction extends AbstractArrayModelFunction implement
@Override
public abstract void cross(Value[] record1, Value[] record2, Collector<Value[]> out);

/* (non-Javadoc)
* @see eu.stratosphere.pact.array.stubs.AbstractArrayModelStub#getUDFMethod()
*/
@Override
public Method getUDFMethod() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ public abstract class JoinFunction extends AbstractArrayModelFunction implements
@Override
public abstract void match(Value[] value1, Value[] value2, Collector<Value[]> out) throws Exception;

/* (non-Javadoc)
* @see eu.stratosphere.pact.array.stubs.AbstractArrayModelStub#getUDFMethod()
*/
@Override
public Method getUDFMethod() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ public abstract class MapFunction extends AbstractArrayModelFunction implements
@Override
public abstract void map(Value[] record, Collector<Value[]> out) throws Exception;

/* (non-Javadoc)
* @see eu.stratosphere.pact.array.stubs.AbstractArrayModelStub#getUDFMethod()
*/
@Override
public Method getUDFMethod() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ public void combine(Iterator<Value[]> records, Collector<Value[]> out) throws Ex
reduce(records, out);
}

/* (non-Javadoc)
* @see eu.stratosphere.pact.array.stubs.AbstractArrayModelStub#getUDFMethod()
*/
@Override
public Method getUDFMethod() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,6 @@ public void open(Configuration parameters) throws Exception {

// --------------------------------------------------------------------------------------------

/* (non-Javadoc)
* @see eu.stratosphere.pact.array.stubs.AbstractArrayModelStub#getUDFMethod()
*/
@Override
public final Method getUDFMethod() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ public abstract class ArrayOutputFormat extends FileOutputFormat<Value[]> implem

// --------------------------------------------------------------------------------------------

/**
* {@inheritDoc}
*/

@Override
public void configure(Configuration parameters) {
super.configure(parameters);
Expand All @@ -69,23 +67,15 @@ public void configure(Configuration parameters) {
this.lenient = parameters.getBoolean(LENIENT_PARSING, false);
}

/* (non-Javadoc)
* @see eu.stratosphere.api.record.io.FileOutputFormat#open(int)
*/
@Override
public void open(int taskNumber) throws IOException
{
public void open(int taskNumber) throws IOException {
super.open(taskNumber);
this.wrt = this.charsetName == null ? new OutputStreamWriter(new BufferedOutputStream(this.stream, 4096)) :
new OutputStreamWriter(new BufferedOutputStream(this.stream, 4096), this.charsetName);
}

/* (non-Javadoc)
* @see eu.stratosphere.api.record.io.FileOutputFormat#close()
*/
@Override
public void close() throws IOException
{
public void close() throws IOException {
if(wrt != null) {
this.wrt.close();
}
Expand All @@ -94,9 +84,6 @@ public void close() throws IOException

// --------------------------------------------------------------------------------------------

/* (non-Javadoc)
* @see eu.stratosphere.pact.common.recordio.OutputFormat#writeRecord(eu.stratosphere.pact.common.type.PactRecord)
*/
@Override
public void writeRecord(Value[] record) throws IOException {
for (int i = 0; i < record.length; i++) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,7 @@ public void open(TableInputSplit split) throws IOException {
endReached = false;
}

/**
* {@inheritDoc}
*/

@Override
public TableInputSplit[] createInputSplits(final int minNumSplits) throws IOException {

Expand Down Expand Up @@ -377,9 +375,7 @@ private static boolean includeRegionInSplit(final byte[] startKey, final byte[]
return true;
}

/**
* {@inheritDoc}
*/

@Override
public Class<TableInputSplit> getInputSplitType() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,7 @@ public byte[] getEndRow() {
return this.endRow;
}

/**
* {@inheritDoc}
*/

@Override
public void write(final DataOutput out) throws IOException {

Expand Down Expand Up @@ -136,9 +134,7 @@ public void write(final DataOutput out) throws IOException {
}
}

/**
* {@inheritDoc}
*/

@Override
public void read(final DataInput in) throws IOException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,7 @@ private final PactString toString (PactString string, byte[] bytes) {

}

/**
* {@inheritDoc}
*/

@Override
public Job createJob(String... args) {
// parse job parameters
Expand All @@ -120,9 +118,7 @@ public Job createJob(String... args) {
return plan;
}

/**
* {@inheritDoc}
*/

@Override
public String getDescription() {
return "Parameters: [numSubStasks] [input] [output]";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ public abstract class AbstractFailureEvent implements Comparable<AbstractFailure
this.interval = interval;
}

/**
* {@inheritDoc}
*/

@Override
public int compareTo(final AbstractFailureEvent o) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,14 @@ public AutoCompletionCombo(final Composite parent, final int style, final Set<St
}
}

/**
* {@inheritDoc}
*/

@Override
public void keyPressed(final KeyEvent arg0) {

// Nothing to do here
}

/**
* {@inheritDoc}
*/

@Override
public void keyReleased(final KeyEvent arg0) {

Expand Down Expand Up @@ -175,17 +171,13 @@ public void setText(final String text) {
this.combo.setText(text);
}

/**
* {@inheritDoc}
*/

@Override
public void widgetDefaultSelected(final SelectionEvent arg0) {
// Nothing to do here
}

/**
* {@inheritDoc}
*/

@Override
public void widgetSelected(final SelectionEvent arg0) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ public final class JobFailurePatternExecutor implements Runnable {
scheduleNextEvent();
}

/**
* {@inheritDoc}
*/

@Override
public void run() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,7 @@ public void killTask(final ManagementVertexID id, final String taskName) {
this.jobTabItem.killTask(id, taskName);
}

/**
* {@inheritDoc}
*/

@Override
public void killInstance(final String instanceName) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ public SWTJobToolTip(final Shell parent, final String jobName, final JobID jobID
finishInstantiation(x, y, 100, true);
}

/**
* {@inheritDoc}
*/

@Override
public void updateView() {
// Nothing to do here
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,7 @@ public void setRootNode(SWTNetworkNode rootNode) {
this.rootNode = rootNode;
}

/**
* {@inheritDoc}
*/

@Override
protected void paintInternal(GC gc, Device device) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,17 +386,13 @@ private void createJobTab(GraphVisualizationData visualizationData) {
jobTabItem.setControl(swtTabItem);
}

/**
* {@inheritDoc}
*/

@Override
public void widgetDefaultSelected(SelectionEvent arg0) {
// Nothing to do here
}

/**
* {@inheritDoc}
*/

@Override
public void widgetSelected(SelectionEvent arg0) {

Expand Down Expand Up @@ -485,9 +481,7 @@ public void killInstance(final String instanceName) {

}

/**
* {@inheritDoc}
*/

@Override
public void run() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,6 @@ public void addJavascriptFile(String file) {
jsFiles.add(file);
}

/*
* (non-Javadoc)
* @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse)
*/
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// response setup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,6 @@ public JobSubmissionServlet(Configuration nepheleConfig, File jobDir, File planD
this.rand = new Random(System.currentTimeMillis());
}

/*
* (non-Javadoc)
* @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse)
*/
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String action = req.getParameter(ACTION_PARAM_NAME);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,7 @@ public class JobsInfoServlet extends HttpServlet {
public JobsInfoServlet(Configuration nepheleConfig) {
this.config = nepheleConfig;
}

/*
* (non-Javadoc)
* @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse)
*/

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//resp.setContentType("application/json");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,6 @@ public JobsServlet(File jobsDir, File tmpDir, String targetPage) {

// ------------------------------------------------------------------------

/*
* (non-Javadoc)
* @see javax.servlet.GenericServlet#init(javax.servlet.ServletConfig)
*/
public void init(ServletConfig config) throws ServletException {
super.init(config);

Expand All @@ -119,11 +115,6 @@ public void init(ServletConfig config) throws ServletException {
}
}

/*
* (non-Javadoc)
* @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse)
*/
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String action = req.getParameter(ACTION_PARAM_NAME);
Expand Down Expand Up @@ -167,11 +158,6 @@ protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws Se
}
}

/*
* (non-Javadoc)
* @see javax.servlet.http.HttpServlet#doPost(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse)
*/
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// check, if we are doing the right request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ public PactJobJSONServlet(File jobStoreDirectory) {
this.jobStoreDirectory = jobStoreDirectory;
}

/*
* (non-Javadoc)
* @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest,
* javax.servlet.http.HttpServletResponse)
*/
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.setContentType("application/json");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ public PlanDisplayServlet(int runtimePort) {
addJavascriptFile("js/pactgraph.js");
}

/*
* (non-Javadoc)
* @see de.tuberlin.stratosphere.desktop.ServletStub#printPage(java.io.PrintWriter)
*/
@Override
public void printPage(PrintWriter writer, Map<String, String[]> parameters, HttpServletRequest req) throws IOException {
String[] x = parameters.get("id");
Expand Down
Loading

0 comments on commit f76231c

Please sign in to comment.