blob: 1c6a50b64ef5ca86b96a56f89ba4e73ffc50a07b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 EclipseSource and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.rap.addons.dropdown.demo.scripts;
import org.eclipse.rap.rwt.SingletonUtil;
import org.eclipse.rap.rwt.scripting.ClientListener;
public class CustomAutoSuggestClientListener extends ClientListener {
public static CustomAutoSuggestClientListener getInstance() {
return SingletonUtil.getSessionInstance( CustomAutoSuggestClientListener.class );
}
private CustomAutoSuggestClientListener() {
super( getText() );
}
private static String getText() {
String path = "org/eclipse/rap/addons/dropdown/demo/scripts/CustomAutoSuggest.js";
return ResourceLoaderUtil.readTextContent( path );
}
}