formatter

Selection overridden by formatter.

I have applied a Formatter to a JFormattedTextField using a FormatterFactory, when a user clicks into the text field I want to select the contents. A focus listener does not work as expected because the formatter gets called, which eventually causes the value to be reset which ultimately de-selects the fields contents. I think what is ...

How to format a currency datafield in Flex

I have an xml file providing data for a datagrid in Flex 2 that includes an unformatted Price field (ie: it is just a number). Can anyone tell me how I take that datafield and format it - add a currency symbol, put in thousand separators etc. Thanks. S. ...

CSS formatter NOT based on CSS Tidy?

I can't find a css formatter (web based or Windows app) which formats the css where it puts the open brace on its own line aligned with its close brace, plus indents the attributes. The web based css formatters out here seem to be based on CSSTidy which doesn't do what I want. I don't like this CSSTidy format: .example { font-size: 3em...

Can the eclipse formatter be used stand-alone

Is there a way to use the formatter that comes with eclipse, outside of eclipse? I would like to format some java files using my formatter.xml file that I have configured using eclipse. Does anyone have any code examples that would allow me to do this? I would also like to use this standalone, so the specific jars that are used would ...

Any online xml formatter or formatter in free text editor?

Any online xml formatters? Ones that properly indent the tags. Or any free Windows text editor which has a built-in xml formatter? ...

Objective-C style formatter

I'm a newbie on Objective-C programming and aiming to follow Google's code convention: http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml. Some code formatting tool would be handy to use, is there any Objective-C code formatter that can easily be integrated into XCode? ...

Which is best free distributable code to html converter

In my application, I have a requirement to convert Java/VB/VB.net/etc program to HTML, and then use that HTML page (to insert in Word doc). Sure we can write code for this, but this will entail programming for this too, and from more than one programming languages, and dealing with bugs. Whereas it needs to be released ASAP. Using 3rd p...

What is the Java equivalent of C's printf %g format specifier?

I tried using Formatter.format, but that seems to leave the mantissa on numbers with 0 mantissa, whereas the C version does not. Is there an equivalent of C's %g format specifier in Java, and if not, is there a way to fake it? My intention is to preserve the mantissa exactly like C's for compatibility reasons. foo.c #include <stdio.h> ...

How to generate an Eclipse formatter configuration from a checkstyle configuration?

I have a checkstyle configuration XML file and want to automatically generate an Eclipse formatter configuration from this. Is there any tool that can do this? ...

Make Eclipse formatter ignore comments?

Is there a way to make Eclipse's built-in formatter ignore comments? Whenever I run it, it turns this: /* * PSEUDOCODE * Read in user's string/paragraph * * Three cases are possible * Case 1: foobar * do case 1 things * Case 2: fred hacker * do case 2 things * Case 3: co...

Python Formatter Tool

I was wondering if there exists a sort of Python beautifier like the gnu-indent command line tool for C code. Of course indentation is not the point in Python since it is programmer's responsibility but I wish to get my code written in a perfectly homogenous way, taking care particularly of having always identical blank space between ope...

Cocoa NSNumberFormatterCurrencyStyle without "$" return zero

I have a number formatter set up to convert currency strings to decimal values. The problem is that if the text string does not have a leading dollar sign ("$"), it gets converted to 0, rather than a valid matching number. So: "$3.50" converts to 3.50 "3.50" converts to 0 Here is the code for the converter: // formatter to convert a...

Is there any way to format a complete python buffer in emacs with a key press?

I am looking for any way to have Emacs format a Python buffer by hitting a few keys. By format, I mean: Replace tabs with 4 spaces Wrap all long lines correctly at 79 chars. This includes wrapping & concatenating long strings, wrapping long comments, wrapping lists, function headers, etc. Unrelated, but when I hit enter, it'd be nice...

Code formatter / beautifier for C on Linux for Emacs user

I'm a Linux user looking for a code beautifier which will take files containing C code and format them to specification. Specifically, I'm looking to: Change all indentations to be 8 spaces Format blocks of code consistently Add line breaks consistently It would be nice if it had both defaults and the ability to customize. I prefer f...

Automapper Formatter not working

I'm trying to add a formatter to my Automapper configuration to style all DateTime? fields. I've tried adding my formatter globally: Mapper.AddFormatter<DateStringFormatter>(); And on the specific mapping itself: Mapper.CreateMap<Post, PostViewModel>() .ForMember(dto => dto.Published, opt => opt.AddFormatter<DateStringFo...

How to disable the Formatter in Delphi 2010

Hello, The formatter in Delphi 2010 is really an annoying thing to me. I prefer formatting my code manually. I believe I do it better. How can I disable it? NOTE: Answers on why I don't use it in the first place will not be accepted. I need it switched OFF. Nothing more, nothing less. Thank you. ...

Understanding the $ in Java's format strings

StringBuilder sb = new StringBuilder(); // Send all output to the Appendable object sb Formatter formatter = new Formatter(sb, Locale.US); // Explicit argument indices may be used to re-order output. formatter.format("%4$2s %3$2s %2$2s %1$2s", "a", "b", "c", "d") // -> " d c b a" In this case, why is a 2 appended to $? ...

Delphi 2010: anyone got the right settings for the formatter not to fold anonymous methods?

With the default settings, the Delphi 2010 code formatter folds anonymous methods on one line. Is there anyone who has found settings to circumvent this? Original code: procedure TUnit.AppendFinalization(const StringBuilder: TStringBuilder); begin AppendMemberResults(StringBuilder, function(Member: TGeneratableInUnit): IStringLi...

Can I easily make Zend Studio 7.1 format code like in 5.x?

Hi, I want Zend Studio 7.1 to format code like in version 5.x. Is there any way this could work without editing every setting for "formatter" manually? Thanks. ...

Smart Java formatter

I'm looking for a smart Java String formatter similar to the standard Formatter: StringBuffer buffer = new StringBuffer(); Formatter formatter = new Formatter(buffer); formatter.format("hello %1$s, %2$s and %3$s", "me", "myself", "I"); The problem is that if you make a mistake in the format (e.g. you forget the $s) an exce...