com.baidu.ueditor.define.MultiState Java Examples

The following examples show how to use com.baidu.ueditor.define.MultiState. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ImageHunter.java    From sdb-mall with Apache License 2.0 3 votes vote down vote up
public State capture ( String[] list ) {
	
	MultiState state = new MultiState( true );
	
	for ( String source : list ) {
		state.addState( captureRemoteData( source ) );
	}
	
	return state;
	
}
 
Example #2
Source File: ImageHunter.java    From wangmarket with Apache License 2.0 3 votes vote down vote up
public State capture ( String[] list ) {
	
	MultiState state = new MultiState( true );
	
	for ( String source : list ) {
		state.addState( captureRemoteData( source ) );
	}
	
	return state;
	
}
 
Example #3
Source File: FileManager.java    From hsweb-framework with Apache License 2.0 3 votes vote down vote up
public State listFile(int index) {

        State state = new MultiState(true);

        state.putInfo("start", index);
        state.putInfo("total",0);

        return state;

    }
 
Example #4
Source File: ImageHunter.java    From cms with Apache License 2.0 3 votes vote down vote up
public State capture ( String[] list ) {
	
	MultiState state = new MultiState( true );
	
	for ( String source : list ) {
		state.addState( captureRemoteData( source ) );
	}
	
	return state;
	
}
 
Example #5
Source File: ImageHunter.java    From ueditor with Apache License 2.0 3 votes vote down vote up
public State capture ( String[] list ) {
	
	MultiState state = new MultiState( true );
	
	for ( String source : list ) {
		state.addState( captureRemoteData( source ) );
	}
	
	return state;
	
}