Tagged Questions
-1
votes
1answer
26 views
save a variable storing a textbox - android programming?
In one application I have one textbox and one botton. When I click the button I want to save the the text that is inserted in the textbox. And use that value for any occasion.
Thanks
0
votes
1answer
28 views
Eclipse disorders an XML file after pressing Ctrl + Shift + F
Ctrl + Shift + F does a good job when putting java or layout files in order. But does it disorder things in a file which starts with <selector ...
2
votes
5answers
115 views
Automatically check Java files for coding standard compliance
I'm working in Java development. I have recently come into a situation where I have to comply to coding standards: member and method ordering, naming conventions, modifier sequence. I am thinking ...
0
votes
3answers
31 views
Highlighting line which are not correctly formated [Eclipse]
So I have some formatting rule to follow, such as :
Space on each side of operator (*, =, +, %, etc)
No space at the end of a line
No more than 80 chars per line
Is there a way to highlight in red ...
2
votes
2answers
70 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 ...
1
vote
1answer
30 views
How can I execute tests automatically
In eclipse, I create the test and always have to run it manually. Can eclipse run the tests when I save my class? This will save so much time.
0
votes
4answers
725 views
Why “XXX” word in Java comment in eclipse IDE take a special style?
When i write a Java comment in Eclipse IDE containning "XXX" word
Like that
// Increment
// XXX => Not like that [ x = x++; ]
// OK => BUT like that [ x++; ]
The "XXX" word take a style ...
-4
votes
3answers
116 views
Killing user session when idle in 30 minutes - java based [closed]
Good day!
I am developing a system.
A java based web application.
From the system requirement, a session have to be killed when the user is found to be idle within 30 minutes.
What is the easiest ...
1
vote
0answers
27 views
Eclipse: coping with different coding styles when committing to repository?
I am in a team of developers who all have their own unique ways of styling their code.
For me I like to have new lines for my braces when using controls or loops. Other developers like having a ...
3
votes
1answer
112 views
Using Eclipse Compiler in Jenkins to get compiler warnings/errors
I want to have the eclipse compiler warnings shown in my Jenkins Job.
I know that it is possible to use the Eclipse Compiler using the ant javac adapter.
That way Eclipse compiler warnings are shown ...
3
votes
1answer
142 views
Eclipse: Auto-align “=” in assignments
How do one convert a block of variable assignments, e.g.:
private final String s1 = "10011";
private final String s2 = "01100";
private final String ones = "11111";
private final String zeros = ...
2
votes
1answer
118 views
How to share eclipse Java/XML code style settings between developers?
In projects with many developers it is useful if all their IDEs are configured with identical code style settings, such that you won't get pseudo-differences due to changed formatting checked into ...
0
votes
2answers
160 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
votes
2answers
53 views
How to change Eclipse settings (for Java) to put brackets on the line after a method/class declaration? [duplicate]
Possible Duplicate:
Eclipse and curly braces
So basically this:
public void foo
{
doStuff();
}
Instead of the default, which is this:
public void foo {
doStuff();
}
Just ...
0
votes
1answer
64 views
How to display characters per line in Eclipse
Is there an option in Eclipse or CDT to display the number of characters in each line of code or to highlight lines of code that exceed a specific length?
I am programming in C on Eclipse 3.7
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
0answers
96 views
How do I define an Eclipse “Code Style” for a C++ Macro?
When I auto-format my C++ code containing a macro, Eclipse adds a line break and indentation before the ";". For example:
// Tests
TEST(Test1, Test1)
{
EXPECT_EQ (2.0*2.0, 4.0)
;
}
How ...
3
votes
1answer
1k views
Can the Eclipse Javascript formatter be set up for JSLint compliance?
I can't seem to configure the Eclipse Javascript formatting options so that it generates markup JSLint doesn't complain about - primarily whitespace settings when the "tolerate sloppy whitespace" ...
0
votes
0answers
127 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 ...
2
votes
3answers
155 views
How to set Code Formatter for Java Anonymous Methods in Eclipse
I'm using Eclipse for Android development and I have already set up my code formatting style but still have the anonymous methods that I couldn't figure out how to format in Eclipse. This is how ...
2
votes
2answers
324 views
Should I use upper-case naming to declare java constant variables?
My question: Should names of constant Java variables (within methods) be upper-case?
I've always been under the impression that
a) if a variable is never going to change, it should be declared ...
1
vote
1answer
165 views
Hard wrap string literals at print margin in Eclipse C/C++
C/C++ Eclipse can automatically format and wrap just about any kind of code and behaviour is very configurable, except for string literals. Here is a made up example where debug output message happens ...
1
vote
3answers
153 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 ...
0
votes
0answers
126 views
Coding Java with NetBeans?
I have used Eclipse for Java, but now I want to use NetBeans. In eclipse, when I open brackets: (), [], {}, I can escape their scope by TAB key or ENTER key. In NetBeans, I must use arrow keys, it's ...
1
vote
1answer
220 views
Eclipse control statement curly braces indented incorrectly
I'm trying to use a GNU-based coding style in Eclipse Galileo for C++. By default, conditional statements look like this:
if (true)
{
return;
}
The curly braces are being indented, when ...
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 ...
2
votes
2answers
523 views
Java eclipse highlight missing brackets
I just can't find the option anywhere. Is there some way in eclipse to warn about stuff like this? if(a==b)continue; instead of if(a==b){continue;}
Or can maybe the format function fix this?
2
votes
4answers
638 views
How to change Java comments template?
I use /** + ENTER to generate javadoc, but i found there's a whitespace before line 3:
1 /**
2 * Test.
3 *
4 * @author xxx
5 */
Every time i try "source - format" in eclipse,the white space comes ...
0
votes
2answers
114 views
How to escape the duplicity in Android?
My experience and good books had taught me that repeating of the same thing in code is bad. But when I use Android views, I often repeat the same thing even 4 times:
twice in XML:
<LinearLayout ...
3
votes
1answer
167 views
How to ignore line wrapping in Eclipse?
I still use Line wrapping feature of Eclipse to format my java code. I don't want Eclipse join wrapped lines automatically, so I checked "Never join already wrapped lines", but when I format my code, ...
1
vote
2answers
455 views
Eclipse : Crap4j and other intelligent code quality analyzers [closed]
I recently acquired Crap4j, and ran it but got the following error:
No test found. Is project built?
I'm wondering:
What tests does Crap4j need access to? Shouldn't it just statically analyze ...
20
votes
5answers
6k views
What code folding plugins work on Eclipse 3.6?
I am new to java development environment and I find it difficult to manage my code properly. .Net provides the #regions which is a good solution for code management.
I am using Eclipse environment ...
0
votes
1answer
330 views
What's the purpose of Eclipse tags - like @author, @version, @link?
I've noticed that Eclipse automatically adds an @author tag with my name at the top of a new Java class. I also noticed that there are other tags available like @version, @link, @code, @value, ...
3
votes
4answers
194 views
Java make methods static when possible, good practise?
I set my compiler to warn me about methods that could be made static.
These methods are mostly some helpers to do calculations, set attributes on passed objects and so on.
Should I make them static, ...
2
votes
5answers
2k views
Should Java member enum types be capitalized?
Anal question here: we have Java enums which are their own classes, and enums which are members of a class:
public enum reportType { ...
Every time I see this it jars me* because when I see it ...
3
votes
1answer
321 views
How to extend CDT's coding style component?
The C project I am working on has some special coding style rules that I couldn't find an option in CDT's coding style settings. For example,
1.
switch () {
__case xx: <two spaces for case>
...
8
votes
2answers
462 views
Can Eclipse Formatter Wrap Where Necessary, Every Element on a New Line?
I'm tying to figure out how I can customize the Eclipse code formatter to break lines more to my liking. I'm trying to set the style for parameter lists, either in method declarations or calls. ...
6
votes
1answer
350 views
How to set indentation of array's elements in Java Script source code in Eclipse?
How can I configure formatting options in Eclipse for Java Script source code so that having this code:
var o = {
items: [{
xtype: 'grid',
columns: [<cursor here>{header: ...
1
vote
2answers
160 views
Eclipse automated code formation and Hyperlinks
I'm a big fan of the automated code formation (STRG + SHIFT + F) from eclipse. It makes your code so much more readable. However, now that I'm comenting my code, I'm getting the problem with ...
0
votes
1answer
51 views
lite app and full app - best practise for dividing?
What is the best practise for developing a lite app and a full app with additional features? It is better to create 2 projects in eclipse oder just one project with e.g a constant for switching the ...
16
votes
2answers
513 views
Removing new lines before empty blocks in Eclipse
I prefer Allman-style braces, for example:
if (foo)
{
// magical prancing unicorn stuff
}
rather than:
if (foo) {
// unmagical boring pony things
}
The Java formatter in Eclipse handles ...
0
votes
1answer
194 views
Code style template not working for EJBs created using Eclipse
I have a requirement to add copyright information for every new java file created, using Eclipse. So I updated the copyright information in "Java -> code style -> Code templates". This works fine when ...
2
votes
5answers
1k views
How do I change the code convention in Eclipse
I like to use curly brackets in this fashion
void hello()
{
code();
}
When I ctr + shift + F in eclipse it changes everything to
void hello(){
code();
}
0
votes
2answers
185 views
Eclipse format question
When I format in eclipse long lines become from this :
String str = instance.someMethod("jhdajhajsha").someOtherMethod("sakjsaksja");
to this :
String str = instance.someMethod("jhdajhajsha")
...
2
votes
1answer
2k views
Eclipse CDT Source->Implement Method generates code not following defined code style
I am using Source->Implement Method sometimes, but I noticed that the generated code does not follow the defined code style from the preferences (the style is applied when I use Source->Format ...
1
vote
2answers
594 views
Project-specific Checkstyle configuration in Eclipse
Is there a way to define a configuration XML for Checkstyle in Eclipse that would be project specific, as in "you put a XML file in the project tree and Checkstyle recognizes it"?
As far as I've ...
0
votes
1answer
67 views
Eclipse Checkstyle Plugin works with Java 1.5?
I wanted some tool which could check all the standard violations that I make while I write code. After some search I found Eclipse Checkstyle Plugin suitable to my requirement.
I have not yet tried ...
2
votes
2answers
523 views
Code Style in eclipse
Is there a way to enforce a code style programatically in eclipse e.g. using eclipse plugins.
I have created a code template. I want to enforce it so that everytime a user selects save or saveas,the ...
1
vote
2answers
127 views
Code style preferences using Sicstus and Eclipse (Spider)
I am currently using Sicstus Prolog VC9 4.1.1 within Eclipse Galileo (Spider). I have a very newbie question: how would I automatically control indentation and in general code style preferences?
0
votes
1answer
698 views
Eclipse Plugin or else for coding footnote
I love the Manning In Action Series. One of appealing area is that the code listing inside the book always has a footnote where there is a detailed explanation by a reference number. See below the ...

