0
votes
1answer
25 views

Wrap/Proxy Boilerplate Code from Methods

I'm not a Java specialist and wondering if I could wrap Methods that are only diffrent in their middle to stop having boilerplatecode like this: public boolean storeAnimals(Cage cage, ...
2
votes
1answer
195 views

pdfbox wrap text

I am using PDFBox wit hthe following code: doc = new PDDocument(); page = new PDPage(); doc.addPage(page); PDFont font = PDType1Font.COURIER; ...
1
vote
2answers
128 views

JTextPane is not wrapping text

I am running into one weird problem. I have a JtextPane inside a JscrollPane which is showing large string in term of distribution list and it is properly wrapping code when I am running the program ...
1
vote
1answer
253 views

JTable Multiline cell Auto wrap

Im developing Hospital Managment System Application using java, i have ICD-10 codes with a very long texts, i want to show them with jtable, but since the text is too long i need the JTable cell to ...
1
vote
2answers
339 views

Automatic wrap JavaFX 2 ListView

How can I make an auto wrap ListView (multiline when the text is too long) in JavaFX 2? I know that if I put a \n to the string, it will be multiline, but the content is too dynamic. Or is there a ...
2
votes
1answer
99 views

Wrapping more than 1 method in JAVA? Enums aren't the right way?

i have the following situation in java: I have 1 Interface called "A" that needs to be implemented by an class i load dynamically after the program start. Lets call it B. This interface provides x ...
1
vote
1answer
193 views

Java Apache commons classes not found during runtime

Okay so after a hard fought battle on Google I was able to figure out a way to download and setup the Apache Commons API for Java (all of this just so I can wrap a chunk of text :P). After correctly ...
2
votes
0answers
49 views

Wrap text in jtextpane and save changes

Ok, I can wrap the text in JTextPane, but I'd like to save the new text with the break lines. So will have a new text with the carriage return in the specific position. What can I do?
-1
votes
2answers
1k views

SWT - Wrap label within a composite

I have ScrolledComposite which allows only vertical scrolling. (heighthint = 400) Within this ScrolledComposite, I have another CompositeA (height may exceed 400 for scrolling) to store all other ...
1
vote
4answers
1k views

How to force eclipse wrap that line?

Is there a way to make eclipse wrap the line with the b's to a length of 120 per line? I wasn't able to configure the code formatter to wrap the line. This really drives me crazy... public class ...
0
votes
1answer
235 views

Using Launch4j, when should I Wrap the Jar?

I'm new to Launch4j. By default, it "wraps" the jar, but there is a checkbox that reads "Dont't wrap the jar, launch only". When should I check this box? When should I not check this box? I searched ...
2
votes
0answers
514 views

JTextPane wrap long words

For some reason JTextPane only warp text if there are spaces between words, consider the following example: package textpane; import javax.swing.JFrame; import javax.swing.JScrollPane; import ...
1
vote
1answer
109 views

How to wrap text in myeclipse?

I am working on myeclipse 9 but I could not find any such feature of wrapping long lines. Previously I was working on Myeclipse 7 and my friend suggested me a plugin ...
3
votes
1answer
169 views

JList wrap issue

Some strange behavior from a JList. When I add elements to it during run time, it seems to not update the wrap properly. When the frame is revalidated, it will continue to render new items on the ...
2
votes
1answer
104 views

Force JList to NOT wrap at all?

Is there a possibility to force JLists to display all items on one line? setOrientationLayout() does not give you that option.
0
votes
1answer
1k views

jtextpane doesn't wrap text

I've got a problem with JTextPane. I need to mark some parts of text with specified color, so I've decided to use JTextPane and html tags to decorate my text. JTextPane is inside JScrollPane, and ...
0
votes
2answers
790 views

Text-wrapping JLabels with no preferred/max/min size

I'm using JLabels as hyperlinks. I want them to look and function exactly like a link in a browser, so using text panes/editor panes etc is not desirable. The problem is that many of the containers ...
2
votes
2answers
756 views

How do you make MiGLayout behave like Wrap Layout?

I'd like to replicate the example shown here: Wrap Layout using MiGLayout. I have tried some combinations, but I'm having a hard time making the buttons wrap automatically to new rows as the ...
1
vote
1answer
529 views

java code reuse for Android

I am going to port a java application into Android, as long as there is no direct way of doing it i am trying to separate the GUI part from algorithm so i need to reuse java classes. i need to wrap ...
0
votes
1answer
906 views

Recursive Word Wrap Algorithm

I am working on an algorithm that has three parts. The first is a recursive method that will wrap words to a specific length with the least penalty. The second is an algorithm that is a Dynamic ...
0
votes
1answer
2k views

Get SSLException form the SSLEngine Wrap method during handshake process

When I run the client Handshake process on my Java application in order to establish SSL connection, I get SSLException on the second call to the wrap method. I understand that in this point the ...
1
vote
2answers
1k views

How to wrap Java String.format()?

Hey everyone, I would like to wrap the String.format() method with in my own Logger class. I can't figure a way how to pass arguments from my method to String.format(). public class Logger { ...
1
vote
2answers
1k views

Internationalized word wrapping in Java

I need good word-wrapping handling for Java. Not too difficult, except for one wrinkle: since I'm working on an internationalized application, it needs to handle Chinese, Japanese and Korean text ...
2
votes
1answer
1k views

GWT wrap() method iterates whole DOM unnecessarily?

I'm using a custom GWT component that wraps around an existing textbox in my html page. The page returns a list of information - so as larger sets of information are loaded - the GWT loading process ...