Ejemplo n.º 1
0
        public void AddResource(string name, ObfuscationStatus status, string text)
        {
            ObfuscatedThing r = new ObfuscatedThing(name);

            r.Update(status, text);

            Resources.Add(r);
        }
Ejemplo n.º 2
0
 public void Update(ObfuscationStatus status, string statusText)
 {
     this.Status     = status;
     this.StatusText = statusText;
 }
Ejemplo n.º 3
0
        public void UpdateEvent(EventKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing m = GetEvent(key);

            m.Update(status, text);
        }
Ejemplo n.º 4
0
        public void UpdateMethod(MethodKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing m = GetMethod(key);

            m.Update(status, text);
        }
Ejemplo n.º 5
0
        public void UpdateProperty(PropertyKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing m = GetProperty(key);

            m.Update(status, text);
        }
Ejemplo n.º 6
0
        public void UpdateType(TypeKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedClass c = GetClass(key);

            c.Update(status, text);
        }
Ejemplo n.º 7
0
        public void UpdateField(FieldKey key, ObfuscationStatus status, string text)
        {
            ObfuscatedThing f = GetField(key);

            f.Update(status, text);
        }
Ejemplo n.º 8
0
		public void AddResource(string name, ObfuscationStatus status, string text)
		{
			ObfuscatedThing r = new ObfuscatedThing(name);

			r.Update(status, text);

			resources.Add(r);
		}
Ejemplo n.º 9
0
		public void Update(ObfuscationStatus status, string statusText)
		{
			this.Status = status;
			this.StatusText = statusText;
		}
Ejemplo n.º 10
0
		public void UpdateEvent(EventKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing m = GetEvent(key);

			m.Update(status, text);
		}
Ejemplo n.º 11
0
		public void UpdateProperty(PropertyKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing m = GetProperty(key);

			m.Update(status, text);
		}
Ejemplo n.º 12
0
		public void UpdateMethod(MethodKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing m = GetMethod(key);

			m.Update(status, text);
		}
Ejemplo n.º 13
0
		public void UpdateField(FieldKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedThing f = GetField(key);

			f.Update(status, text);
		}
Ejemplo n.º 14
0
		public void UpdateType(TypeKey key, ObfuscationStatus status, string text)
		{
			ObfuscatedClass c = GetClass(key);

			c.Update(status, text);
		}