break;
}
facade.addMethodAnnotation(entityBean.getEjbClass(), methodName, emptySignature, javax.persistence.GeneratedValue.class, generatedValueProps);
}
SequenceGenerator sequenceGenerator = id.getSequenceGenerator();
if (sequenceGenerator != null) {
Map<String, Object> sequenceGeneratorProps = new HashMap<String, Object>();
sequenceGeneratorProps.put("name", sequenceGenerator.getName()); //$NON-NLS-1$
sequenceGeneratorProps.put("sequenceName", sequenceGenerator.getSequenceName()); //$NON-NLS-1$
sequenceGeneratorProps.put("initialValue", sequenceGenerator.getInitialValue().intValue()); //$NON-NLS-1$
sequenceGeneratorProps.put("allocationSize", sequenceGenerator.getAllocationSize().intValue()); //$NON-NLS-1$
facade.addMethodAnnotation(entityBean.getEjbClass(), methodName, emptySignature, javax.persistence.SequenceGenerator.class, sequenceGeneratorProps);
}
TableGenerator tableGenerator = id.getTableGenerator();
if (tableGenerator != null) {