• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
creating and instantiating formatters
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

creating and instantiating formatters


  • Subject: creating and instantiating formatters
  • From: Theodore Petrosky <email@hidden>
  • Date: Wed, 25 Mar 2009 10:23:34 -0700 (PDT)

Obviously, I don't understand how to create, instantiate, or implement a formatter. Here's what I tried.

I created HTMLLineBreakReformatter.java as:

package com.as.utils;

import java.text.FieldPosition;
import java.text.Format;
import java.text.ParsePosition;

@SuppressWarnings("serial")
public class HTMLLineBreakReformatter extends Format {

	@Override
	public StringBuffer format(Object object, StringBuffer buffer, FieldPosition pos) {
		return buffer.append(((String)object).replaceAll("\n", "<BR />"));

	}

	@Override
	public Object parseObject(String source, ParsePosition pos) {

		return null;
	}

}

Then I imported it into my java for the page:

public HTMLLineBreakReformatter hTMLFormtter;

and in the constructor for the page's java:

public UserMain(WOContext context) {
    super(context);

    hTMLFormtter = new HTMLLineBreakReformatter();
}


then in the WOString in question:

<wo:WOString  formatter = "$hTMLFormtter" value = "$currentNote.noteText" />

the \n's are indeed replaced by <br /> and I see in the page in question:

I need to see the example here!!!<BR /><BR /><BR />and again<BR /><BR />and again<BR /><BR />and again!!!

the HTML page is not interpreting the <br /> as a new line which means I don't understand something.

I am running out of ideas to try. I should say I feel that I have run out of ideas.

Thanks for any help...

Ted




 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: creating and instantiating formatters
      • From: Chuck Hill <email@hidden>
  • Prev by Date: Re: JavaClient Common classes
  • Next by Date: Re: creating and instantiating formatters
  • Previous by thread: Re: Setting not-nullable field to null - nothing happens
  • Next by thread: Re: creating and instantiating formatters
  • Index(es):
    • Date
    • Thread