Almost implement XVnc

This commit is contained in:
khanhduytran0
2020-05-03 20:27:54 +07:00
parent 626f273f8d
commit f72660fa5a
117 changed files with 16007 additions and 22 deletions

View File

@@ -0,0 +1,31 @@
/**
* Copyright (C) 2009 Michael A. MacDonald
*/
package android.androidVNC;
import com.antlersoft.android.db.FieldAccessor;
import com.antlersoft.android.db.TableInterface;
/**
* @author Michael A. MacDonald
*
*/
@TableInterface(TableName="META_KEY",ImplementingClassName="AbstractMetaKeyBean")
public interface IMetaKey {
@FieldAccessor
long get_Id();
@FieldAccessor
long getMetaListId();
@FieldAccessor
String getKeyDesc();
@FieldAccessor
int getMetaFlags();
@FieldAccessor
boolean isMouseClick();
@FieldAccessor
int getMouseButtons();
@FieldAccessor
int getKeySym();
@FieldAccessor
String getShortcut();
}