WeirdEOL(int propertyOrder)1*2bcacabbSAdam Hornacek/* 2 * Test scopes with weird eol 3 */ 4 package test.scopes; 5 6 import weird.eol; 7 8 public class WeirdEOL 9 { 10 private int m_propertyOrder; 11 public WeirdEOL(int propertyOrder) 12 { 13 this.m_propertyOrder = propertyOrder; 14 } 15 16 17 /** 18 * Get property order 19 * 20 * @return property order. 21 */ 22 public int getPropertyOrder() 23 { 24 return this.m_propertyOrder; 25 } 26 } 27