コード例 #1
0
ファイル: JavaPlatform.cs プロジェクト: zhaoshijian/Ginger
        public override List <ActUIElement.eElementAction> GetSubElementAction(ActUIElement.eSubElementType subElementType)
        {
            List <ActUIElement.eElementAction> list = new List <ActUIElement.eElementAction>();

            switch (subElementType)
            {
            case ActUIElement.eSubElementType.HTMLTable:
                list.Add(ActUIElement.eElementAction.TableAction);
                list.Add(ActUIElement.eElementAction.TableCellAction);
                list.Add(ActUIElement.eElementAction.TableRowAction);
                break;

            default:
                list.Add(ActUIElement.eElementAction.TableAction);
                list.Add(ActUIElement.eElementAction.TableCellAction);
                list.Add(ActUIElement.eElementAction.TableRowAction);
                break;
            }
            return(list);
        }
コード例 #2
0
ファイル: PlatformInfoBase.cs プロジェクト: linuxerlj/Ginger
 public virtual List <ActUIElement.eElementAction> GetSubElementAction(ActUIElement.eSubElementType subElementType)
 {
     return(null);
 }