require "Machine_Context.rb"

class Context < Machine_Context_rb 

  def appleScriptName
    "contexts"
  end

  def filter
    new ContextFilter(self)
  end
  def awakeFromInsert
    #super
    setName("--Context--")
  end
  
  def objectEnumerator
	return nil
  end

  def syncON
	@syncing=true
  end
  def syncOFF
	@syncing=false
  end

end