X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Forg%2Fmarc4j%2Fmarc%2FRecord.java;fp=src%2Forg%2Fmarc4j%2Fmarc%2FRecord.java;h=a4453fbdb921d894cfd85e44cad91705ffceffc6;hb=50f32ab70a47cf0d329bf65a596f94dbb413c76f;hp=62b5acab44dd86d9df496108811f54e7dde121de;hpb=fa7e8c01ac0a2009caeca46135a0df80da2c2d52;p=marc4j.git diff --git a/src/org/marc4j/marc/Record.java b/src/org/marc4j/marc/Record.java index 62b5aca..a4453fb 100644 --- a/src/org/marc4j/marc/Record.java +++ b/src/org/marc4j/marc/Record.java @@ -90,21 +90,21 @@ public interface Record extends Serializable { * * @return List - the variable fields */ - public List getVariableFields(); + public List getVariableFields(); /** * Returns a list of control fields * * @return List - the control fields */ - public List getControlFields(); + public List getControlFields(); /** * Returns a list of data fields * * @return List - the data fields */ - public List getDataFields(); + public List getDataFields(); /** * Returns the control number field or null if no control @@ -137,7 +137,7 @@ public interface Record extends Serializable { * * @return List - the variable fields */ - public List getVariableFields(String tag); + public List getVariableFields(String tag); /** * Returns a list of variable fields for the given tags. @@ -153,7 +153,7 @@ public interface Record extends Serializable { * * @return List - the variable fields */ - public List getVariableFields(String[] tag); + public List getVariableFields(String[] tag); /** * Returns the Leader. @@ -183,7 +183,7 @@ public interface Record extends Serializable { * the regular expression * @return List - the result list */ - public List find(String pattern); + public List find(String pattern); /** * Returns a List of VariableField objects with the given tag that have a @@ -200,7 +200,7 @@ public interface Record extends Serializable { * the regular expression * @return List - the result list */ - public List find(String tag, String pattern); + public List find(String tag, String pattern); /** * Returns a List of VariableField objects with the given tags that have a @@ -217,6 +217,6 @@ public interface Record extends Serializable { * the regular expression * @return List - the result list */ - public List find(String[] tag, String pattern); + public List find(String[] tag, String pattern); } \ No newline at end of file