示例#1
0
 /**
  * Get a list of all occurrences of the field Field29F in the given message an empty list is
  * returned if none found.
  *
  * @param msg may be empty or null in which case an empty list is returned
  * @see #getAll(SwiftTagListBlock)
  */
 public static java.util.List<Field29F> getAll(final SwiftMessage msg) {
   if (msg == null || msg.getBlock4() == null || msg.getBlock4().isEmpty()) return null;
   return getAll(msg.getBlock4());
 }
示例#2
0
 @SequenceStyle(Type.GENERATED_16RS)
 private SequenceB(final SwiftMessage m) {
   super(m.getBlock4().getSubBlock(START_END_16RS).getTags());
 }
示例#3
0
 /**
  * Get the first instance of Field29F in the given message.
  *
  * @param msg may be empty or null
  * @return null if not found or msg is empty or null
  * @see #get(SwiftTagListBlock)
  */
 public static Field29F get(final SwiftMessage msg) {
   if (msg == null || msg.getBlock4() == null || msg.getBlock4().isEmpty()) return null;
   return get(msg.getBlock4());
 }
示例#4
0
文件: MT517.java 项目: DhruboB/wife
 private SequenceA1(final SwiftMessage m) {
   super(m.getBlock4().getSubBlock(START_END_16RS).getTags());
 }