Example #1
0
 public DIWrapperSource(int indGlyphOwner, GConsts.TypeGlyph typeGlyph,
     GScope.TypeGScope scope)
 {
     this.indGlyphOwner=indGlyphOwner;
     this.typeGlyph=typeGlyph;
     this.scope=scope;
 }
Example #2
0
        public static bool GScInterfer(GScope.TypeGScope scope, string str)
        {
            switch (scope)
            {
            case TypeGScope._SEARCH_ANY_:
                return(true);

            case TypeGScope._UNDEF_:
                return(GScUndef(str));

            default:
                return(GElemInterfer(StrGScope(scope), str));
            }
        }
Example #3
0
 public DICWrap_HasErrorType(int indexGlyph, GScope.TypeGScope scope, System.Type typeGErr)
 {
     this.indexGlyph=indexGlyph;
     this.scope=scope;
     this.typeGErr=typeGErr;
 }