2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2011 - DIGITEO - Bruno JOFRET
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
12 package org.scilab.modules.graphic_objects.graphicView;
14 import org.scilab.modules.graphic_objects.ScilabNativeView;
16 public class ScilabView extends ScilabNativeView implements GraphicView {
18 private static ScilabView me;
23 public static ScilabView getScilabView() {
25 me = new ScilabView();
30 public void createObject(String id) {
31 ScilabNativeView__createObject(id);
34 public void deleteObject(String id) {
35 ScilabNativeView__deleteObject(id);
38 public void updateObject(String id, int property) {
39 ScilabNativeView__updateObject(id, property);