Пример #1
0
        public void AddResource(string name, ObfuscationStatus status, string text)
        {
            ObfuscatedThing r = new ObfuscatedThing(name);

            r.Update(status, text);

            Resources.Add(r);
        }
Пример #2
0
 public void Update(ObfuscationStatus status, string statusText)
 {
     this.Status     = status;
     this.StatusText = statusText;
 }
Пример #3
0
        public void UpdateEvent(EventKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing m = GetEvent(key);

            m.Update(status, text);
        }
Пример #4
0
        public void UpdateMethod(MethodKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing m = GetMethod(key);

            m.Update(status, text);
        }
Пример #5
0
        public void UpdateProperty(PropertyKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing m = GetProperty(key);

            m.Update(status, text);
        }
Пример #6
0
        public void UpdateType(TypeKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedClass c = GetClass(key);

            c.Update(status, text);
        }
Пример #7
0
        public void UpdateField(FieldKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing f = GetField(key);

            f.Update(status, text);
        }
Пример #8
0
		public void AddResource(string name, ObfuscationStatus status, string text)
		{
			ObfuscatedThing r = new ObfuscatedThing(name);

			r.Update(status, text);

			resources.Add(r);
		}
Пример #9
0
		public void Update(ObfuscationStatus status, string statusText)
		{
			this.Status = status;
			this.StatusText = statusText;
		}
Пример #10
0
		public void UpdateEvent(EventKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing m = GetEvent(key);

			m.Update(status, text);
		}
Пример #11
0
		public void UpdateProperty(PropertyKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing m = GetProperty(key);

			m.Update(status, text);
		}
Пример #12
0
		public void UpdateMethod(MethodKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing m = GetMethod(key);

			m.Update(status, text);
		}
Пример #13
0
		public void UpdateField(FieldKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing f = GetField(key);

			f.Update(status, text);
		}
Пример #14
0
		public void UpdateType(TypeKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedClass c = GetClass(key);

			c.Update(status, text);
		}