mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2026-04-19 09:07:06 -04:00
Almost implement XVnc
This commit is contained in:
31
app/src/main/java/android/androidVNC/IMetaKey.java
Normal file
31
app/src/main/java/android/androidVNC/IMetaKey.java
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user