0
votes
1answer
27 views

Can Eclipse (or any IDE) introduce type parameters to an existing type

This is the exact opposite of how can I remove generic type from class using refactoring. I want to introduce a type parameter to an interface. It is used quite extensively, so not very practical to ...
2
votes
2answers
32 views

Is it possible to change method signature in AspectJ

My question: is it possible to change method signature in AspectJ? For example, given class: Class Foo { @Test public void shouldReturnOne(){} } Change into: Class Foo { @Test ...
3
votes
2answers
74 views

Java Data-Entity model: Constructing general types

I have had some trouble with using a general type in a static method. All comments on the source code are welcome, especially ones that significantly improve the code. I am also currently not ...
0
votes
0answers
26 views

Use JDEvAn and Code-Imp for code refactoring in java

I am assigned a project in code refactoring in java using tools JDEvAn and Code-Imp. The actual paper given for the task is "Automated refactoring using design differencing" by Moghadam/Cinnéide ...
1
vote
2answers
56 views

Is there any way to refactor this code or re-write it in a compact form?

I'm working on an android app that produces image effects on an image. Below is the snapshot of my app: As you can see, on the bottom - there is a horizontal scrollbar, and as the user touches one ...
0
votes
1answer
24 views

Refactor annotation but keep old annotation name for backward compatibility

So I have a problem that I'm not sure is solvable well. I have a library that has a method annotation @Retention(RetentionPolicy.RUNTIME) public @interface CallbackHandler {...} For the next ...
3
votes
3answers
77 views

Complex refactoring

Are there any good Java refactoring tools that could handle large-scale refactoring projects such as the one below. Obviously I would prefer free if possible. I am working with a legacy project, most ...
1
vote
2answers
41 views

Can a Constructor Use a Builder

I am refactoring a class to use a builder with a private constructor instead of public constructors. I want to have the old, deprecated, public constructors use the builder as shown below. (this is an ...
11
votes
3answers
126 views

How to remove duplication from my code

I have two similar methods. One of them prints something and one of them save somethings. As you can see there are a lot of duplicate code. How should I refactor it and remove this duplication ? ...
0
votes
2answers
31 views

Changing content provider package after refactor

I forked the IOSchedule app from last year's Google IO. I want to make sure I can get an API key which means I need to sign the application and it doesn't have conflicts with the content provider ...
2
votes
1answer
56 views

Best way to change an existing Interface api method to return an Object instead of void?

I have an existing design based on an Interface which exposes an API method, which currently returns void. And there are many different implementation classes which implements this interface. But, now ...
2
votes
2answers
60 views

Copying class members into other classes - eclipse

When you need to move some class functionality into another class, it might be easily done by searching for corresponding methods via references of some common variable (Ctrl+Shift+G) and then using ...
0
votes
3answers
40 views

Checking error value after each step

I have the following Java method: public ERROR myMainMethod() { ERROR ret = invokeFirstSub(); if (ret != ERROR.NO_ERROR) { return ret; } ret = invokeSecondSub(); if (ret != ...
0
votes
2answers
29 views

Android - saving user operation steps

In my applicaition there are some user operation which have severeal steps. For example 1 - Type your name and surname 2 - Type your credit cart number 3 - Type your address . . we are saving ...
1
vote
2answers
51 views

How to force Eclipse to use the this keyword when auto-generating getters and setters?

In Eclipse, is there a way to force the use of the this keyword with referring to class members when auto-generating getters and setters? For example, I want this getter, auto-generated by Eclipse, ...
0
votes
1answer
49 views

Can I reduce this reoccurring pattern in my Java class?

I have the following interface: public interface Gravy { public List<Giblet> getGiblets(); public Giblet getGiblet(String id); public int getNumGiblets(); public void ...
0
votes
1answer
49 views

Double Brace Initialization in java [duplicate]

I found i this site http://howtodoinjava.com/2012/11/20/double-brace-initialization-in-java/ a new way to start my collection I alway have a doubt about java Can i have one estructure like with do ...
0
votes
1answer
36 views

Refactoring scanning folder class (add AllwaysPassesBlocker())

I need create a new constructor in FolderScan that takes a list of "Checkers". And all these "Checkers" always return true (schoud write new Chekers List that just return true.) But problem is that I ...
2
votes
2answers
119 views

Eclipse renaming function on projects with dependencies

I have two eclipse project. The second one depends on the first one. When I try to rename a java class of the first project (using the rename function on the java file on the project explorer) it ...
0
votes
1answer
28 views

revert back refactoring step in Eclipse Java project

I was refactored class name in a large java source code in Eclipse. But in a situation where the refactoring produces any undesirable result, I would like to revered back to the previous class name or ...
3
votes
5answers
134 views

How to refactor large class that uses “Strategies”?

Problem I have a large class (about 1500 LOC) and it uses different "strategies" to transform data from one object to another. I have here a representation of that class: public class FooService ...
0
votes
1answer
49 views

How can i extract a variable with eclipse and convert it into a class?

I have the problem that I defined a HashMap as a variable, where I should have used a class for better extendability. I would like eclipse to refactor the HashMap<String, Integer> result ...
2
votes
2answers
98 views

Refactoring java code using scripts

Is there an eclipse based solution to refactor Java code using scripts? I've read about the Eclipse Language toolkit, but it seems that it implies the creation of a plugin, which sounds like overkill ...
1
vote
2answers
61 views

Refactoring options for a Java visitor

I have a class that defines a transformation from an AST (Abstract Syntax Tree) to an Intermediate Representation (IR) based on the visitor pattern. Both models are EMF models, so the visitor extends ...
0
votes
1answer
32 views

Refactoring: Dual Keys and generic methods

I Have a few generic methods for constructing a Hibernate Search Model. Basically it requires 2 keys and a few inputs. key1 !=key2 Example public SearchModel getSearchModelA(String key1, String ...
2
votes
1answer
101 views

Refactoring duplicated and highly coupled code

I have three concrete classes- public class ClassA{ public C1 processA(C1 c1){ //lots of ugly code that copies //one field to another //return c1 } public ...
-1
votes
2answers
76 views

Refactoring output from System.out to PrintStream

How able to change System.out which I use to check the result. I need test this method. Better do this when output will be with PrintStream. How able to solve this? Code: private void scan(File ...
1
vote
1answer
51 views

Refactoring Windows, UNIX, URI path mixture

What alternatives are there for refactoring code which stores various types of paths as String objects to use only URI objects? The code currently has paths stored as String objects where the values ...
6
votes
2answers
362 views

Refactoring auto-detect file's encoding

I need to check encoding files. This code work but it's a little bit long. How able to make any refactoring this logic. Maybe can to use some another variant for this target? Code: class ...
1
vote
2answers
90 views

Refactoring method according Single Responsibility Principle

I need to test contract obligations program. I don't see any straightforward way to test this method as written. It's violating the Single Responsibility Principle, and simply doing too many things. I ...
0
votes
0answers
43 views

Java - Is this refactorable? [closed]

Is there anyway to refactor this bloated pig? int studyNum; int formVer; int partNum; // We're getting the integer value of a string. If it throws an exception, set it equal to 0; try { studyNum ...
1
vote
2answers
114 views

How to refactor “stringly-typed” code?

I'm currently working on a codebase where there are a few classes of variable, like database paths, which are simply represented as Strings. Most of the operations on these (non-)types are defined in ...
2
votes
6answers
133 views

Refactoring else-if operators with different extensions? [duplicate]

I want to know how we better way refctoring this part of code with else-if operators. When is performed eguals check with different extentions? Code: private void findFiles(String path) { ...
2
votes
3answers
57 views

How to refactor procedural start-up code?

I have a class (Android Activity) which handles start-up of my application. The application has some pretty complex start-up rules. Right now it looks like a bunch of spaghetti and I'm looking for ...
1
vote
1answer
49 views

How should I go about dividing functionality into Java classes?

I'm working on a moderate-sized Java project and trying to stick to the best possible practices, so I thought I'd run a few questions by you guys. Since I currently have time, I want to do it right. ...
0
votes
2answers
83 views

Proper Java classes structure [closed]

I'm currently in the process of cleaning up a a large Java code base, and I was wondering what was the proper (standard?) structure/ordering of a Java class. What I mean is: Should public static ...
-2
votes
2answers
96 views

mass renaming of java variables [closed]

I have a class with about 50 fields. They are named roughly like this: config__write_better_code I want them to look like this instead and not have to rename them all manually: ...
2
votes
1answer
82 views

Replacing abstract base class with interface in IntelliJ

I have an abstract base class with a single abstract method that I would like to get rid of. I would like to introduce a new interface with that method and make all existing subclasses to implement ...
0
votes
2answers
93 views

Eclipse refactor pull up

I have many classes (B0, B1, B2... B#) all extending class A After initially overriding a function of A and implementing it in all of the B classes. I realise I could have been smarter and ...
0
votes
1answer
67 views

Basic java re-factoring: Delegate the differences of child classes to parent and merge/remove them

Please deal with this basic question. I have an abstract class C1 which extends another abstract class C0 and is extended by multiple sub-classes (C21 and C22). @Component public abstract class C0 { ...
0
votes
2answers
133 views

How to reduce cyclomatic complexity inside an onClick() method

Let's imagine a simple construction: public void onClick(View view) { switch (view.getId()) { case R.id.btn_first: { // some code } break; case ...
3
votes
8answers
135 views

Refactor this Java code checking if a String contains any of these possibilities?

I am needing to check if a string does NOT contain any of these string possibilities: MNC BRA LEB MAR RVC WAY GLZ WWW HYB My current code : if(selectedLocation.equals("OTH")) { ...
0
votes
4answers
86 views

How to find how much of a library is being used inside a Java application?

I am working on an existing Java application that uses 34 external jars. Part of my job is to make the code cleaner and less bloated. I can easily find which library is not used at all by removing it ...
0
votes
2answers
65 views

Must select the good interface name

What to name the interface Color? At Android library have a class with the same name (and this class is used in the application). Would not be good if the app has the class and interface names differ ...
0
votes
2answers
48 views

How can I refactor this code and apply OO patterns?

I have four RichTable instances in my class and there is a notion of current table instance . Depending on a flag resetAll I need to clear out selections of either all the tables or all tables except ...
0
votes
1answer
57 views

Netbeans with Java: set all methods to static

I'm working on a Java project on NetBeans. At some point, I have several variables and methods (say, about twenty) which are not static. I want to refactor all of them to be static. How can I proceed ...
4
votes
7answers
140 views

How better refactor chain of methods that can return null in java?

I have code like: obj1 = SomeObject.method1(); if (obj1 != null) { obj2 = obj1.method2(); if (obj2 != null) { obj3 = obj2.method3(); if (obj3 != null) { ............ ...
2
votes
0answers
142 views

Refactor parameter names programmatically

Using eclipse's jdt refactoring framework, I am trying to convert two different code bases to the same names. They are almost identical codebases except that names are different. Function/Field/Class ...
0
votes
1answer
50 views

In intellij, how can I extract a method that adds to a list and returns the list instead of uses a list as an argument?

If I start with a method like this: package com.sandbox; import java.util.ArrayList; import java.util.List; public class Sandbox { public static void main(String[] args) { ...
0
votes
1answer
44 views

alternate to sesssion variable is it serialization

This is a question I always wanted to ask. We always read that it is better to use request object when we have to carry data from one page to other. Now let's say I have about 10 different data items ...

1 2 3 4 5 10