Tagged Questions
0
votes
1answer
31 views
Xcode formatting of objective C code
I am use to using a feature in eclipse that formats all of my code in a file to the same syntax position by hitting Shift + Ctrl + F. I don't even know what this feature is called but I was wondering ...
0
votes
2answers
39 views
In Eclipse, what plugin/class provides the style formatting on Java code?
As you type Java code in Eclipse, the Viewer colors, emboldens, italicizes, fades, and provides styles to the Java code as you type it, as seen in the picture:
What is actually implementing these ...
0
votes
0answers
29 views
Eclipse autoformat rule for putting the method call on the same line?
Currently my style is like this:
UIDEx reg = sink
.connect(
urlparts[1],
props,
...
2
votes
1answer
21 views
How to custom Eclipse's formatter about jQuery code
This topic is nice, but instead of placing special tag comments everywhere, I look for a solution about jQuery code, more specifically the $ character. Eclipse formatter does not seem to recognize
...
1
vote
0answers
26 views
Cursor placement when calling a method with void parameters
This is a fairly straight forward question but I am unable to find an answer about this specific type of formatting. I'm looking for a way to modify where eclipse places the cursor after using its ...
0
votes
1answer
29 views
Eclipse formatter for java ending braces
I would like to know if it's possible to setup eclipse to format braces using banner style. We're working with code that uses banner style formatting and would like to keep it consistent within the ...
0
votes
0answers
11 views
Format eclipse so annotations not on different lines, but are on their own line
Say I have a method in Eclipse like so:
@Deprecated
@Override
public void foo(int i) {
super(i+1);
}
If I go to the formatter in eclipse, New Lines tab, and uncheck Insert new line after ...
0
votes
0answers
21 views
Is there a way to copy a list of files containing code into Word?
I've built an Android application and I am required to put the code into the appendices of the document. There is a multitude of code and I would like to do this quick as opposed to going through ...
1
vote
1answer
71 views
Howto autoformat Python code max characters per line with Pydev
I'm using Pydev for Python programming in Eclipse.
I would like to know if there is a way for auto-formatting the code so that a maximum number of characters per line is respected.
Thanks
4
votes
2answers
51 views
Eclipse 3.7 formating static in class
In Eclipse 3.7 is code:
public class AppResources
{
private static Image titleIcon;
static
{
AppResources.titleIcon = getIconImage();
}
public static Image getTitleIcon()
...
0
votes
2answers
50 views
How to auto format code in eclipse?
How to auto format code in eclipse ?
I wanted to auto format the code in eclipse, here is how if someone needs it :)
0
votes
0answers
39 views
How to format java files using maven? [closed]
In my recent project multiple teams is working on a code base and most of them are fresher/associate level engineers. Obviously they are not much aware of code standards and best practices to be ...
2
votes
2answers
73 views
Variable declarations - Use modifier 'final' where possible. Yes, and what's up with classes and methods?
I'm finishing a project which has like 100-150 classes and...puff..many, many methods. For the development, I've used the "Use modifier 'final' where possible" save action since the beginning. But ...
2
votes
1answer
46 views
Sort members in Eclipse by visibility without alphabetic sorting
I'm curious if there is an option to sort the diefferent types like fields, methods, etc by visibility but not by alphabet. I know I can sort the members by using Source -> Cleanup. But it keeps ...
0
votes
0answers
110 views
JSP/JS formatting in eclipse?
Folks is there any plugin for eclipse which provides the standard formatting/indentation.I could find basic settings
at I could find a few basic setting in Web->JSP Files->Editor but does not help ...
0
votes
1answer
285 views
Any SQL formatter plugin for Eclipse avaialble?
I am not finding any standard open source sql formatter eclipse plugin on net. I am using eclipse helios. I can find Edit-->FormatSQL but that does not seems to be working. Found one at ...
2
votes
1answer
50 views
Eclipse format comments with /* or // at beginning of line?
Basically, I want the Eclipse Java formatter to format comments so the /* or // is at the beginning of the line, before the first tab.
Does anyone know of any setting that allows this? I notice that ...
0
votes
5answers
119 views
eclipse code formatter [closed]
I'm using existing code which isn't well formatted. The Eclipse Formatter fails at formatting and I'm new to configuring the formatter. Therefore, after a while of trying, I failed. Build-in templates ...
0
votes
1answer
79 views
Eclipse custom C/C++ code style profile for multiuser environment
My developers are using Eclipse Helios with CDT 7. I am writing the Eclipse plug-in for this environment. I have created the custom C/C++ code style profile with my new settings named "My Profile". ...
0
votes
0answers
17 views
How to stop Eclipse formatter from stacking faces tags on one line?
Similar to How to stop Eclipse formatter from placing all enums on one line but for XHTML editting:
In my source code, eclipse formatter is stacking up some tags, and I would like to have each of ...
1
vote
1answer
289 views
Eclipse C++ formatter puts new line before method identifiers
I ran into a problem with the Eclipse formatter. It won't format my code correctly when declaring methods within a class declaration. It puts a new line after the method's return type.
I already ...
0
votes
2answers
47 views
Eclipse Annoying Default Formatting
My original code:
ListView myListView = (ListView) view.findViewById(R.id.myListView);
Code after format (annoying!):
ListView myListView = (ListView) view
...
1
vote
1answer
211 views
Can the Eclipse code style formatter align assignment statements?
Eclipse has an option in Indentation: "Alignment of fields in class declarations" that will
align assignments of class members as in:
class Foo {
int x = 3;
String y = "abc"
long z ...
0
votes
2answers
164 views
Eclipse Java code formatter
I would like the Eclipse formatter to format Java method declarations in a specific way, is this possible? If not, is there a way to define my own custom formatting?
The code should look like this ...
1
vote
1answer
155 views
Eclipse Formatting breaks EL expressions inside JavaScript script
Wow, the title is quite a mouth full. Let me explain. I have a .jsp page, on this page is a JavaScript <script ..> element and inside the JavaScript there is an EL expression (${..}). The code ...
1
vote
3answers
66 views
How to specify a directory when creating a File object?
This should be a really simple question but Google + my code isn't working out.
In Eclipse on Windows, I want my program to look inside a certain folder. The folder is directly inside the Project ...
1
vote
1answer
111 views
Eclipse c++ formatting array initializers
The way eclipse formats array initializers is just horrible. I know you can adjust the way it formats in the preferences but it will always put a newline between the '=' and the "{ ... }'.
This looks ...
0
votes
0answers
35 views
Python script to import Java or JavaScript Code Formatter Profile into Eclipse
Is there a python script to import Java or JavaScript code formatter profile XML into Eclipse?
It needs to work/update the profile while Eclipse is running and shouldn't require a restart of ...
1
vote
0answers
18 views
Format XML on save in eclipse? [duplicate]
Possible Duplicate:
Eclipse: auto format XML files on save
I know this can be done with Java files, and newer ADT versions update XML. But for a non Android developer is it possible to make ...
12
votes
5answers
466 views
Is there any way I can write (copy-paste) nicely-formatted SQL queries in Java string literals using Eclipse?
When I wish to use SQL queries in Java, I usually hold them in final String variables. Now, when the string is too large, it goes out of page breadth, and we either have to manually break it (In ...
4
votes
4answers
620 views
How to prevent Eclipse formatter from messing up text-bulleted comments?
I have (Java) comments such as:
/*
* The quick brown fox jumped over the lazy dog.
*
*
* Notes:
* - The quick brown fox jumped over the lazy dog. The quick brown fox
* jumped over the lazy ...
0
votes
1answer
176 views
modify android-formatting.xml in android adt for eclipse
I want to edit the reformating which comes with the official Android ADT in eclipse, is this possible?
I want, for example, remove the break after a long class decleration.
I have the official AOSP ...
1
vote
1answer
299 views
Eclipse Java code formatting
I'm writting a GUI program.
It has several JPanels that conatin other components. It would be really nice if my code would look like this:
parent component code
child component code
...
1
vote
1answer
170 views
Can Eclipse CDT formatter be set to keep one liners when reformatting?
In my include files I'll often have some single line functions, such as:
void SetValue(int value) {m_value = value;}
int GetValue() const {return m_value;}
I like keeping these on one line but ...
1
vote
2answers
70 views
why is eclipse formatting my xml file on save
When I save an XMl document, eclipse formats it (badly). I wish to turn it off. I have checked the preferences for shortcuts assigned to ctrl+s, the xml file prefs and more but I am unable to find ...
1
vote
1answer
204 views
Eclipse XML Formatter broken
When I want to format my pom.xml the following happens:
From
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
...
1
vote
3answers
403 views
Editing text/html content in Eclipse
I'm getting more into using javascript-rendered templates by wrapping them in 'script type="text/html"' tags (in my case within a JSP). The problem is that Eclipse (Indigo) doesn't apply any ...
0
votes
0answers
35 views
How to configure eclipse formatter so that it adds a new line after the final paramter of a function only if it has wrapped the parameters
Right now eclipse wraps your parameters like this
public function initialize_less_variables_if_not_set(
Ai1ec_Wordpress_Db_Adapter $db_adapter,
$theme_path ) {
i need to obtain
public ...
0
votes
0answers
128 views
Eclipse Java formatter: Wrapping comma-separated field initializers after comma
I have a code style preference that seems to me as though it would be somewhat common, but I see no way to configure it in Eclipse's Java formatter and my searches haven't found anyone else mentioning ...
1
vote
1answer
216 views
Prevent eclipse from destroying CSS formatting
Eclipse seems to be completely ignorant of EL expressions inside CSS. When I format my stylesheets, this happens:
.tooltip:hover span.info {
...
border-color: #{theme.get('borderTooltip')};
...
2
votes
2answers
365 views
Eclipse Java EE Indigo 's XML formatting is suddenly screwed up
A few days ago it was just fine. I haven't made any change to the IDE or anything else in the preferences.
Looks like random instability, but I hope I'm wrong, I don't want to go through the IDE ...
1
vote
2answers
339 views
Eclipse formatter: New line after annotations/public?
IntelliJ has some such facilities and options. For example, I want it to format like:
@Override public
void foo()
{ ... }
Better yet would be the ability to indent the annotations and visibility ...
1
vote
3answers
155 views
Make sense to use code formatter template arbitrary in team? [closed]
I am working on a Java project, about ten developers in team. And we all use Eclipse as IDE.
To make source code in more consistent style in team, I am wondering if it makes sense to use code ...
1
vote
0answers
116 views
Eclipse: how to format all xml files in workspace?
I greatly appreciate the functionality of Eclipse to apply code formatter to all projects in workspace, however it works only for Java files, I'd like now to apply formatter to all XML files. And ...
1
vote
0answers
124 views
Javascript code formatter does not work (Indigo SR2 Java EE - 64 bit)
I do not why Indigo does not want to format my javascript pages. I can see the format properties in Preferences > Javascript > code style > formater but nothing happen (menu : Source > format or ...
0
votes
3answers
380 views
Eclipse formatter settings
Could anybody share their eclipse formatter settings file or point me to such a file which will prevent my eclipse from doing the following thing:
when I press ctrl+shift+F to format my code, eclipse ...
0
votes
1answer
423 views
Eclipse can't handle CSS3 Animations
I was wondering if anybody could tell me why eclipse seems determined to not format the code for css3 animations correctly, more specifically it inserts newlines into the keyframe rules. ANy tips on ...
1
vote
1answer
274 views
Make Aptana / Eclipse formatter ignore arrays
See Aptana PHP Formatter - use custom formatting rules
I don't want the formatter to add newlines for each element in the array, since that more often than not will make the array less readable..
Of ...
0
votes
1answer
57 views
Java formatter in Eclipse - change java.lang.Object references to Object, add import statement as necessary
I have a lot of generated code (classes from a WSDL) that I would like to clean up. There are references like java.lang.Object and the.very.same.namespace.as.TheGeneratedClass all over. Is there ...
1
vote
2answers
170 views
Eclipse XML formatting changes order of tags?
I just noticed something strange. If I have this XML:
<level number="7" background="background_5">
and I press CTRL-SHIFT-F (Format) the code suddenly changes to this:
<level ...
