blob: 5076aff950c1b97103c7513c59dd8c2b07b7e2c0 [file] [log] [blame]
// Copyright (C) 2013 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package net.codemirror.lib;
import com.google.gwt.core.client.JavaScriptObject;
/** {line, ch} objects used within CodeMirror. */
public class LineCharacter extends JavaScriptObject {
public static LineCharacter create(int line, int ch) {
return createImpl(line, ch);
}
public static LineCharacter create(int line) {
return createImpl(line, 0);
}
private static LineCharacter createImpl(int line, int ch) {
LineCharacter lineCh = createObject().cast();
lineCh.setLine(line);
lineCh.setCh(ch);
return lineCh;
}
public final native void setLine(int line) /*-{ this.line = line; }-*/;
public final native void setCh(int ch) /*-{ this.ch = ch; }-*/;
public final native int getLine() /*-{ return this.line; }-*/;
public final native int getCh() /*-{ return this.ch; }-*/;
protected LineCharacter() {
}
}