Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@96693 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
312e8277a6
commit
3a09fd152a
|
@ -52,11 +52,9 @@ import org.gcube.portlets.user.td.gwtservice.shared.tr.column.DeleteColumnSessio
|
|||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.LabelColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.LabelColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.MergeColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.MergeColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.ReplaceColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.ReplaceColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.SplitColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.SplitColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.type.ChangeColumnTypeMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.type.ChangeColumnTypeSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.metadata.TRMetadata;
|
||||
|
@ -784,7 +782,7 @@ public interface TDGWTService extends RemoteService {
|
|||
*
|
||||
* @return
|
||||
* @throws TDGWTServiceException
|
||||
*/
|
||||
*/
|
||||
public SplitColumnMonitor getSplitColumnMonitor()
|
||||
throws TDGWTServiceException;
|
||||
|
||||
|
@ -793,9 +791,11 @@ public interface TDGWTService extends RemoteService {
|
|||
*
|
||||
* @param splitColumnSession
|
||||
* @throws TDGWTServiceException
|
||||
*/
|
||||
|
||||
public void startSplitColumn(SplitColumnSession splitColumnSession)
|
||||
throws TDGWTServiceException;
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Get Operation Monitor during the Merge Column operation
|
||||
|
@ -812,10 +812,10 @@ public interface TDGWTService extends RemoteService {
|
|||
*
|
||||
* @param splitColumnSession
|
||||
* @throws TDGWTServiceException
|
||||
*/
|
||||
|
||||
public void startMergeColumn(MergeColumnSession mergeColumnSession)
|
||||
throws TDGWTServiceException;
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -51,11 +51,9 @@ import org.gcube.portlets.user.td.gwtservice.shared.tr.column.DeleteColumnSessio
|
|||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.LabelColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.LabelColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.MergeColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.MergeColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.ReplaceColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.ReplaceColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.SplitColumnMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.SplitColumnSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.type.ChangeColumnTypeMonitor;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.column.type.ChangeColumnTypeSession;
|
||||
import org.gcube.portlets.user.td.gwtservice.shared.tr.metadata.TRMetadata;
|
||||
|
@ -221,9 +219,9 @@ public interface TDGWTServiceAsync {
|
|||
void startLabelColumn(LabelColumnSession labelColumnSession,AsyncCallback<Void> callback);
|
||||
|
||||
void getSplitColumnMonitor(AsyncCallback<SplitColumnMonitor> callback);
|
||||
void startSplitColumn(SplitColumnSession splitColumnSession,AsyncCallback<Void> callback);
|
||||
/*void startSplitColumn(SplitColumnSession splitColumnSession,AsyncCallback<Void> callback);*/
|
||||
void getMergeColumnMonitor(AsyncCallback<MergeColumnMonitor> callback);
|
||||
void startSplitColumn(MergeColumnSession mergeColumnSession,AsyncCallback<Void> callback);
|
||||
/*void startSplitColumn(MergeColumnSession mergeColumnSession,AsyncCallback<Void> callback); */
|
||||
|
||||
|
||||
//BatchReplace Operation
|
||||
|
|
|
@ -7678,7 +7678,6 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
|||
}
|
||||
|
||||
// TODO
|
||||
@Override
|
||||
public void startSplitColumn(SplitColumnSession splitColumnSession)
|
||||
throws TDGWTServiceException {
|
||||
try {
|
||||
|
@ -7824,7 +7823,6 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
|
|||
}
|
||||
|
||||
// TODO
|
||||
@Override
|
||||
public void startMergeColumn(MergeColumnSession mergeColumnSession)
|
||||
throws TDGWTServiceException {
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue