| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| MappingFunction |
|
| 1.0;1 |
| 1 | /* |
|
| 2 | * Copyright (c) 2007 David Holroyd |
|
| 3 | */ |
|
| 4 | ||
| 5 | package uk.co.badgersinfoil.asxsd; |
|
| 6 | ||
| 7 | import uk.co.badgersinfoil.metaas.dom.ASMethod; |
|
| 8 | ||
| 9 | ||
| 10 | public interface MappingFunction { |
|
| 11 | ||
| 12 | public String appliedTo(String accessExpr); |
|
| 13 | ||
| 14 | public ASMethod getImplementation(); |
|
| 15 | public void setImplementation(ASMethod impl); |
|
| 16 | } |