File tree Expand file tree Collapse file tree
src/me/lotabout/codegenerator/config Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<idea-plugin >
22 <id >me.lotabout.codegenerator</id >
33 <name >Code Generator</name >
4- <version >1.3.2 </version >
4+ <version >1.3.3 </version >
55 <vendor email =" lotabout@gmail.com" url =" https://lotabout.me" >Jinzhou Zhang</vendor >
66
77 <description ><![CDATA[
2020
2121 <change-notes ><![CDATA[
2222 <ul>
23+ <li>version 1.3.3 <p>fix: pipeline settings could not be saved.</p></li>
2324 <li>version 1.3.2 <p>support idea 2016.3 and after</p></li>
2425 <li>version 1.3.1 <p>move Code Generator Menu to Generate menu</p></li>
2526 <li>version 1.3 <p>support insert at caret. Fix bugs</p></li>
Original file line number Diff line number Diff line change 11package me .lotabout .codegenerator .config ;
22
33import com .intellij .openapi .util .io .FileUtil ;
4+ import com .intellij .util .xmlb .annotations .AbstractCollection ;
5+
46import org .apache .commons .lang .builder .EqualsBuilder ;
57import org .apache .commons .lang .builder .HashCodeBuilder ;
68import org .jetbrains .java .generate .config .DuplicationPolicy ;
@@ -30,6 +32,7 @@ public class CodeTemplate {
3032 @ XmlElement (name ="classSelection" , type =ClassSelectionConfig .class )
3133 })
3234 @ XmlElementWrapper
35+ @ AbstractCollection (elementTypes = {MemberSelectionConfig .class , ClassSelectionConfig .class })
3336 public List <PipelineStep > pipeline = new ArrayList <>();
3437
3538 public InsertWhere insertNewMethodOption = InsertWhere .AT_CARET ;
You can’t perform that action at this time.
0 commit comments