001package org.clafer.scope;
002
003/**
004 *
005 * @author jimmy
006 */
007public interface Scopable {
008
009    /**
010     * Convert to scope.
011     * 
012     * @return the scope
013     */
014    public Scope toScope();
015}