IU-2021.3.3 <Kane@DESKTOP-BSU1BVP Overwrite local to http://cppdisciple.f3322.org:3000/Kane/idea-config-repo.git

This commit is contained in:
Kane Wang 2022-04-07 19:07:47 +08:00
commit f62a09c318
8 changed files with 73 additions and 3 deletions

5
_windows/keymap.xml Normal file
View File

@ -0,0 +1,5 @@
<application>
<component name="KeymapManager">
<active_keymap name="Windows Proper Redo" />
</component>
</application>

View File

@ -1,5 +1,5 @@
<application>
<component name="EditorColorsManagerImpl">
<global_color_scheme name="Darcula" />
<global_color_scheme name="_@user_Darcula" />
</component>
</application>

View File

@ -1,5 +1,5 @@
<application>
<component name="CodeInsightSettings">
<option name="AUTO_POPUP_JAVADOC_INFO" value="true" />
<option name="USE_INSTANCEOF_ON_EQUALS_PARAMETER" value="true" />
</component>
</application>

View File

@ -5,6 +5,7 @@
<mapping ext="gradle.kts" type="Kotlin" />
<mapping ext="main.kts" type="Kotlin" />
<removed_mapping ext="apk" approved="true" type="ARCHIVE" />
<removed_mapping ext="ignore" approved="true" type="IgnoreLang file" />
<removed_mapping ext="psd" approved="true" type="Image" />
</extensionMap>
</component>

43
ignore.xml Normal file
View File

@ -0,0 +1,43 @@
<application>
<component name="IgnoreSettings" missingGitignore="true" ignoredFileStatus="true" starredTemplates="" unignoreActions="true" notifyIgnoredEditing="true" foldableProjectViewAdvertiseShown="true">
<languages>
<language id="Bazaar" NEW_FILE="true" ENABLE="true" />
<language id="CloudFoundry" NEW_FILE="true" ENABLE="false" />
<language id="Chef" NEW_FILE="true" ENABLE="false" />
<language id="Cvs" NEW_FILE="true" ENABLE="true" />
<language id="Darcs" NEW_FILE="true" ENABLE="true" />
<language id="Docker" NEW_FILE="true" ENABLE="false" />
<language id="ElasticBeanstalk" NEW_FILE="true" ENABLE="false" />
<language id="ESLint" NEW_FILE="true" ENABLE="false" />
<language id="Floobits" NEW_FILE="true" ENABLE="false" />
<language id="Fossil" NEW_FILE="true" ENABLE="true" />
<language id="Git" NEW_FILE="true" ENABLE="false" />
<language id="Google Cloud" NEW_FILE="true" ENABLE="false" />
<language id="Kubernetes Helm" NEW_FILE="true" ENABLE="false" />
<language id="Jetpack" NEW_FILE="true" ENABLE="false" />
<language id="JSHint" NEW_FILE="true" ENABLE="false" />
<language id="Mercurial" NEW_FILE="true" ENABLE="false" />
<language id="Monotone" NEW_FILE="true" ENABLE="true" />
<language id="Nodemon" NEW_FILE="true" ENABLE="false" />
<language id="Npm" NEW_FILE="true" ENABLE="false" />
<language id="NuxtJS" NEW_FILE="true" ENABLE="false" />
<language id="Perforce" NEW_FILE="true" ENABLE="false" />
<language id="Prettier" NEW_FILE="true" ENABLE="false" />
<language id="Sourcegraph" NEW_FILE="true" ENABLE="false" />
<language id="StyleLint" NEW_FILE="true" ENABLE="false" />
<language id="Stylint" NEW_FILE="true" ENABLE="false" />
<language id="Swagger Codegen" NEW_FILE="true" ENABLE="false" />
<language id="Team Foundation" NEW_FILE="true" ENABLE="true" />
<language id="Up" NEW_FILE="true" ENABLE="false" />
</languages>
<userTemplates>
<template name="Example user template">### Example user template
# IntelliJ project files
.idea
*.iml
out
gen</template>
</userTemplates>
</component>
</application>

View File

@ -0,0 +1,11 @@
<application>
<component name="JUnitGeneratorAppSettings">
<option name="selectedTemplateKey" value="JUnit 4" />
<option name="vmTemplates">
<map>
<entry key="JUnit 3" value="######################################################################################## &#10;## &#10;## Available variables: &#10;## $entryList.methodList - List of method composites &#10;## $entryList.privateMethodList - List of private method composites &#10;## $entryList.fieldList - ArrayList of class scope field names &#10;## $entryList.className - class name &#10;## $entryList.packageName - package name &#10;## $today - Todays date in MM/dd/yyyy format &#10;## &#10;## MethodComposite variables: &#10;## $method.name - Method Name &#10;## $method.signature - Full method signature in String form &#10;## $method.reflectionCode - list of strings representing commented out reflection code to access method (Private Methods) &#10;## $method.paramNames - List of Strings representing the method's parameters' names &#10;## $method.paramClasses - List of Strings representing the method's parameters' classes &#10;## &#10;## You can configure the output class name using &quot;testClass&quot; variable below. &#10;## Here are some examples: &#10;## Test${entry.ClassName} - will produce TestSomeClass &#10;## ${entry.className}Test - will produce SomeClassTest &#10;## &#10;######################################################################################## &#10;## &#10;#macro (cap $strIn)$strIn.valueOf($strIn.charAt(0)).toUpperCase()$strIn.substring(1)#end &#10;## Iterate through the list and generate testcase for every entry. &#10;#foreach ($entry in $entryList) &#10;#set( $testClass=&quot;${entry.className}Test&quot;) &#10;## &#10;package test.$entry.packageName; &#10;&#10;import junit.framework.Test; &#10;import junit.framework.TestSuite; &#10;import junit.framework.TestCase; &#10;&#10;/** &#10;* ${entry.className} Tester. &#10;* &#10;* @author &lt;Authors name&gt; &#10;* @since &lt;pre&gt;$today&lt;/pre&gt; &#10;* @version 1.0 &#10;*/ &#10;public class $testClass extends TestCase { &#10;public $testClass(String name) { &#10;super(name); &#10;} &#10;&#10;public void setUp() throws Exception { &#10;super.setUp(); &#10;} &#10;&#10;public void tearDown() throws Exception { &#10;super.tearDown(); &#10;} &#10;&#10;#foreach($method in $entry.methodList) &#10;/** &#10;* &#10;* Method: $method.signature &#10;* &#10;*/ &#10;public void test#cap(${method.name})() throws Exception { &#10;//TODO: Test goes here... &#10;} &#10;&#10;#end &#10;&#10;#foreach($method in $entry.privateMethodList) &#10;/** &#10;* &#10;* Method: $method.signature &#10;* &#10;*/ &#10;public void test#cap(${method.name})() throws Exception { &#10;//TODO: Test goes here... &#10;#foreach($string in $method.reflectionCode) &#10;$string &#10;#end &#10;} &#10;&#10;#end &#10;&#10;public static Test suite() { &#10;return new TestSuite(${testClass}.class); &#10;} &#10;} &#10;#end" />
<entry key="JUnit 4" value="######################################################################################## &#10;## &#10;## Available variables: &#10;## $entryList.methodList - List of method composites &#10;## $entryList.privateMethodList - List of private method composites &#10;## $entryList.fieldList - ArrayList of class scope field names &#10;## $entryList.className - class name &#10;## $entryList.packageName - package name &#10;## $today - Todays date in MM/dd/yyyy format &#10;## &#10;## MethodComposite variables: &#10;## $method.name - Method Name &#10;## $method.signature - Full method signature in String form &#10;## $method.reflectionCode - list of strings representing commented out reflection code to access method (Private Methods) &#10;## $method.paramNames - List of Strings representing the method's parameters' names &#10;## $method.paramClasses - List of Strings representing the method's parameters' classes &#10;## &#10;## You can configure the output class name using &quot;testClass&quot; variable below. &#10;## Here are some examples: &#10;## Test${entry.ClassName} - will produce TestSomeClass &#10;## ${entry.className}Test - will produce SomeClassTest &#10;## &#10;######################################################################################## &#10;## &#10;#macro (cap $strIn)$strIn.valueOf($strIn.charAt(0)).toUpperCase()$strIn.substring(1)#end &#10;## Iterate through the list and generate testcase for every entry. &#10;#foreach ($entry in $entryList) &#10;#set( $testClass=&quot;${entry.className}Test&quot;) &#10;## &#10;package $entry.packageName; &#10;&#10;import org.junit.Test; &#10;import org.junit.Before; &#10;import org.junit.After; &#10;&#10;/** &#10;* ${entry.className} Tester. &#10;* &#10;* @author &lt;Authors name&gt; &#10;* @since &lt;pre&gt;$date&lt;/pre&gt; &#10;* @version 1.0 &#10;*/ &#10;public class $testClass { &#10;&#10;@Before&#10;public void before() throws Exception { &#10;} &#10;&#10;@After&#10;public void after() throws Exception { &#10;} &#10;&#10;#foreach($method in $entry.methodList) &#10;/** &#10;* &#10;* Method: $method.signature &#10;* &#10;*/ &#10;@Test&#10;public void test#cap(${method.name})() throws Exception { &#10;//TODO: Test goes here... &#10;} &#10;&#10;#end &#10;&#10;#foreach($method in $entry.privateMethodList) &#10;/** &#10;* &#10;* Method: $method.signature &#10;* &#10;*/ &#10;@Test&#10;public void test#cap(${method.name})() throws Exception { &#10;//TODO: Test goes here... &#10;#foreach($string in $method.reflectionCode) &#10;$string &#10;#end &#10;} &#10;&#10;#end &#10;} &#10;#end" />
</map>
</option>
</component>
</application>

View File

@ -0,0 +1,8 @@
<keymap version="1" name="Windows Proper Redo" parent="$default">
<action id="$Redo">
<keyboard-shortcut first-keystroke="shift ctrl z" />
<keyboard-shortcut first-keystroke="shift alt back_space" />
<keyboard-shortcut first-keystroke="ctrl y" />
</action>
<action id="EditorDeleteLine" />
</keymap>

View File

@ -1,5 +1,7 @@
<application>
<component name="OverrideFileTypeManager">
<file url="file://D:/develop/太保项目/disaster-warning/code/java/天气灾害预警/pom.xml" value="MavenConfig" />
<file url="file://D:/develop/产险厦门分公司项目/天气灾害预警/code/java/天气灾害预警/pom.xml" value="MavenConfig" />
<file url="file://D:/develop/产险厦门分公司项目/天气灾害预警/code/java/天气灾害预警/src/main/java/AppMain.java" value="JAVA" />
<file url="file://D:/develop/产险厦门分公司项目/天气灾害预警/code/java/天气灾害预警/src/main/java/com/cpic/xim/notify/disaster/WeatherDisasterWarningGrabber.java" value="JAVA" />
</component>
</application>