GithubHelp home page GithubHelp logo

bpep's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

bpep's Issues

could not install plugin via eclipse

i've tried to install the plugin via eclipse / install new software, but it says that could not find the jar:
"bpep_1.0.0.SNAPSHOT.jar"

how could i do the install?

Please provide a MD5 hashsum of the binary

Thanks for providing a download for the latest JAR.

Can you add a MD5-hash since people may download your JAR from AWS without knowing if it's the same version you've uploaded.

Thanks :-)

Final fields not supported in released JAR

Hello,

thanks for this plugin! It looks like the released version of the plugin does not support final fields although the current code is supposed to support it (added with #1). I've tried to build the plugin myself but I get errors. The eclipse dependencies aren't properly resolved by maven / the pom.xml.

It would be great if you could add a newer jar-file and/or tell me how I can build the plugin myself.

Thanks,
gregor

broken for Mars.2 (4.5.2)

I followed the install instructions, however I don't see the Generate Builder Pattern Code. in the Source context menu :(

Feature: option to generate separate java file (interacting with setter methods of original)

I'd love to use have an option for:
[X] Generate Separate file (*Builder.java)

Which would possibly check visibility of fields/availability of setters and show only fields visible in the same package via another class.

Generating for:

public class Foo {
   private int bar;

   void setBar(Bar bar) {
   ...
   }
}

Following:

public class FooBuilder {
   private Foo foo;

   public FooBuilder() {}

   public FooBuilder setBar(Bar bar) {
      this.foo.setBar(bar);
      return this;
   }

   public build() {
     return this.foo;
   }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.