Skip to content

Instantly share code, notes, and snippets.

@remysaissy
Created April 3, 2012 12:44
Show Gist options
  • Save remysaissy/2291687 to your computer and use it in GitHub Desktop.
Save remysaissy/2291687 to your computer and use it in GitHub Desktop.
Chemistry code example
} else if (definition instanceof PropertyDateTimeDefinition) {
if (firstValue == null) {
propertyData = bof.createPropertyDateTimeData(id, (List) null);
} else if (firstValue instanceof GregorianCalendar) {
propertyData = bof.createPropertyDateTimeData(id, (List) values);
} else {
throw new IllegalArgumentException("Property '" + id + "' is a DateTime property!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment