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:
parent
c50de52883
commit
c98a8ad552
@ -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
|
||||
|
@ -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 {
|
||||
|
@ -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
|
||||
|
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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 {
|
||||
|
@ -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
|
||||
|
@ -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 {
|
||||
|
||||
|
@ -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 {
|
||||
|
||||
|
@ -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 {
|
||||
|
||||
|
@ -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 {
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.Properties;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import org.json.JSONException;
|
||||
import org.json.JSONObject;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.StringWriter;
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.Properties;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.metaweb.gridworks.model.operations;
|
||||
package com.metaweb.gridworks.operations;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
Loading…
Reference in New Issue
Block a user