OSDN Git Service

[maven-release-plugin] copy for tag opcodes-1.0.0
[stigmata/stigmata-plugins.git] / opcodes / opcodes-1.0.0 / src / main / java / jp / sourceforge / stigmata / birthmarks / BirthmarkElementBuilder.java
1 package jp.sourceforge.stigmata.birthmarks;
2
3 /*
4  * $Id$
5  */
6
7 import java.util.List;
8
9 import jp.sourceforge.stigmata.BirthmarkContext;
10 import jp.sourceforge.stigmata.BirthmarkElement;
11
12 /**
13  *
14  *
15  * @author tamada
16  * @version $Revision$
17  */
18 public interface BirthmarkElementBuilder {
19     public BirthmarkElement[] buildElements(List<Opcode> opcodes, BirthmarkContext context);
20 }
21