Pulled the operations package up one level.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@119 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-02-22 18:42:25 +00:00
parent c50de52883
commit c98a8ad552
26 changed files with 26 additions and 26 deletions

View File

@ -6,7 +6,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.EngineDependentCommand;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.operations.ColumnAdditionOperation;
import com.metaweb.gridworks.operations.ColumnAdditionOperation;
public class AddColumnCommand extends EngineDependentCommand {
@Override

View File

@ -15,7 +15,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.Command;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.Project;
import com.metaweb.gridworks.model.operations.OperationRegistry;
import com.metaweb.gridworks.operations.OperationRegistry;
import com.metaweb.gridworks.process.Process;
public class ApplyOperationsCommand extends Command {

View File

@ -7,7 +7,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.EngineDependentCommand;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.operations.TextTransformOperation;
import com.metaweb.gridworks.operations.TextTransformOperation;
public class DoTextTransformCommand extends EngineDependentCommand {
@Override

View File

@ -10,7 +10,7 @@ import javax.servlet.http.HttpServletResponse;
import com.metaweb.gridworks.commands.Command;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.Project;
import com.metaweb.gridworks.model.operations.MultiValuedCellJoinOperation;
import com.metaweb.gridworks.operations.MultiValuedCellJoinOperation;
import com.metaweb.gridworks.process.Process;
public class JoinMultiValueCellsCommand extends Command {

View File

@ -10,7 +10,7 @@ import javax.servlet.http.HttpServletResponse;
import com.metaweb.gridworks.commands.Command;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.Project;
import com.metaweb.gridworks.model.operations.ColumnRemovalOperation;
import com.metaweb.gridworks.operations.ColumnRemovalOperation;
import com.metaweb.gridworks.process.Process;
public class RemoveColumnCommand extends Command {

View File

@ -12,7 +12,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.Command;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.Project;
import com.metaweb.gridworks.model.operations.SaveProtographOperation;
import com.metaweb.gridworks.operations.SaveProtographOperation;
import com.metaweb.gridworks.process.Process;
import com.metaweb.gridworks.protograph.Protograph;

View File

@ -10,7 +10,7 @@ import javax.servlet.http.HttpServletResponse;
import com.metaweb.gridworks.commands.Command;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.Project;
import com.metaweb.gridworks.model.operations.MultiValuedCellSplitOperation;
import com.metaweb.gridworks.operations.MultiValuedCellSplitOperation;
import com.metaweb.gridworks.process.Process;
public class SplitMultiValueCellsCommand extends Command {

View File

@ -6,7 +6,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.EngineDependentCommand;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.operations.ReconDiscardJudgmentsOperation;
import com.metaweb.gridworks.operations.ReconDiscardJudgmentsOperation;
public class ReconDiscardJudgmentsCommand extends EngineDependentCommand {
@Override

View File

@ -6,7 +6,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.EngineDependentCommand;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.operations.ReconMarkNewTopicsOperation;
import com.metaweb.gridworks.operations.ReconMarkNewTopicsOperation;
public class ReconMarkNewTopicsCommand extends EngineDependentCommand {

View File

@ -6,7 +6,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.EngineDependentCommand;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.operations.ReconMatchBestCandidatesOperation;
import com.metaweb.gridworks.operations.ReconMatchBestCandidatesOperation;
public class ReconMatchBestCandidatesCommand extends EngineDependentCommand {

View File

@ -7,7 +7,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.EngineDependentCommand;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.ReconCandidate;
import com.metaweb.gridworks.model.operations.ReconMatchSpecificTopicOperation;
import com.metaweb.gridworks.operations.ReconMatchSpecificTopicOperation;
public class ReconMatchSpecificTopicCommand extends EngineDependentCommand {

View File

@ -6,7 +6,7 @@ import org.json.JSONObject;
import com.metaweb.gridworks.commands.EngineDependentCommand;
import com.metaweb.gridworks.model.AbstractOperation;
import com.metaweb.gridworks.model.operations.ReconOperation;
import com.metaweb.gridworks.operations.ReconOperation;
public class ReconcileCommand extends EngineDependentCommand {

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.Properties;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import org.json.JSONException;
import org.json.JSONObject;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.HashMap;
import java.util.Map;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.List;
import java.util.Properties;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.List;
import java.util.Properties;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.List;
import java.util.Properties;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.List;
import java.util.Properties;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.io.InputStream;
import java.io.StringWriter;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.Properties;

View File

@ -1,4 +1,4 @@
package com.metaweb.gridworks.model.operations;
package com.metaweb.gridworks.operations;
import java.util.List;
import java.util.Properties;