001package apps.util.issuereporter; 002 003import java.util.Locale; 004 005/** 006 * 007 * @author rhwood 008 */ 009public class EnhancementRequest extends IssueReport { 010 011 public EnhancementRequest(String title, String body) { 012 super(title, body); 013 } 014 015 @Override 016 public void prepare() { 017 title = Bundle.getMessage(Locale.US, "rfe.title", title); 018 if (!tooLong) { 019 body = Bundle.getMessage(Locale.US, "rfe.body", "", body, getSimpleContext(), this.getIssueFooter()); 020 } else { 021 body = Bundle.getMessage("instructions.paste.414"); 022 } 023 } 024}