001 package railo.runtime.debug; 002 003 public interface ImplicitAccess { 004 005 public void inc(); 006 007 /** 008 * @return the count 009 */ 010 public int getCount(); 011 012 /** 013 * @return the scope 014 */ 015 public String getScope(); 016 017 /** 018 * @return the template 019 */ 020 public String getTemplate(); 021 022 /** 023 * @return the line 024 */ 025 public int getLine(); 026 027 /** 028 * @return the name 029 */ 030 public String getName(); 031 }