active questions tagged properties - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T19:50:23Z http://stackoverflow.com/feeds/tag/properties http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1922971/should-all-the-identifiers-of-static-properties-with-accessors-start-with-upperca 2 Should all the identifiers of static properties with accessors start with uppercase letters? Bernadette 2009-12-17T16:32:56Z 2009-12-17T19:33:46Z <p>I can't see anywhere that this should be the case, but I get an "Invalid declaration syntax" error in the <code>get</code> everytime I declare a static property that does not start with an uppercase letter. E.g:</p> <pre><code>type Foo() = class static member bar with get() = "bar" //Invalid declaration syntax in get end </code></pre> http://stackoverflow.com/questions/1920590/getting-an-array-of-properties-for-an-object-in-objective-c 1 Getting an array of properties for an object in Objective-C papajohn 2009-12-17T09:49:50Z 2009-12-17T10:12:37Z <p>Is it possible to get an array of all of an object's properties in Objective C? Basically, what I want to do is something like this:</p> <pre><code>- (void)save { NSArray *propertyArray = [self propertyNames]; for (NSString *propertyName in propertyArray) { [self doSomethingCoolWithValue:[self valueForKey:propertyName]]; } } </code></pre> <p>Is this possible? It seems like it should be, but I can't figure out what method my <code>propertyNames</code> up there should be.</p> http://stackoverflow.com/questions/456721/custom-nested-properties-methods-in-asp-net 1 Custom nested properties/methods in asp.net Adam Birkner 2009-01-19T06:34:29Z 2009-12-17T00:14:54Z <p>I'm looking for a way to write a custom .net class that would allow for nested methods.</p> <p>For example... say I have a class X with a function Y that returns a list. Then I have another function that returns a sorted list...</p> <p>I would like to be able to do something like x.y().z() where z would accept the output of y() as its input.</p> <p>Basically how .toLower() or .toUpper() can be tacked on to any string.</p> <p>I'm trying to google it but I'm not even sure if I'm asking the right question.</p> <p>Thanks</p> http://stackoverflow.com/questions/1914554/different-ways-to-use-properties-file-in-j2ee-app 1 Different ways to use properties file in j2ee app Omnipresent 2009-12-16T13:05:47Z 2009-12-16T16:40:19Z <p>I have a j2ee app using Struts2. I have a gloabl properties file which is declared in <code>struts.properties</code> which resides in <code>WEB-INF/classes</code>. It has the following setting:</p> <pre><code>struts.custom.i18n.resources=mypropertyfile </code></pre> <p><code>mypropertyfile</code> also resides in <code>WEB-INF/classes</code></p> <p>Say for example it contains the following:</p> <pre><code>pdf.test.title=PDF Test </code></pre> <p>then on jsp I use the following to make use of the property file</p> <pre><code>&lt;s:text name="pdf.test.title"/&gt; </code></pre> <p>This setup was working on Sun App server 8.2 but is not working on GlassFish App Server (I see <code>pdf.test.title</code> on the browser rather than <code>PDF Test</code>). I do not have access to GlassFish App server to try and tweak the setting to make it work. So I want to make changes to the code and see if that will help. </p> <p><strong>My question is:</strong></p> <p>What are some other ways to use properties file in a J2EE app? (using Struts2 or not). I'm also open to ways suggested to make changes on glassfish to make this work?</p> <p>Build/version #'s</p> <p>GlassFish = 9.1_02 (build b04-fcs)</p> <p>Struts2 = 2.0.6</p> <p>JRE6</p> http://stackoverflow.com/questions/1155267/iphone-simulator-build-errors-when-using-synthesized-instance-variables 4 iPhone Simulator: build errors when using synthesized instance variables Philippe Leybaert 2009-07-20T18:55:36Z 2009-12-16T08:01:48Z <p>There are two runtimes for Cocoa/Objective-C: the legacy runtime and the "modern" runtime (that's what Apple calls it).</p> <p>According to <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtVersionsPlatforms.html#//apple%5Fref/doc/uid/TP40008048-CH106" rel="nofollow">Apple's documentation</a>, "<em>iPhone applications and 64-bit programs on Mac OS X v10.5 and later use the modern version of the runtime</em>".</p> <p>So far so good.</p> <p>Now, the "modern" runtime supports a feature called "synthesized instance variables", which means that you don't have to define an instance variable for every declared property. The instance variable will be added automatically. Quote from the <a href="http://developer.apple.com/iphone/library/documentation/cocoa/Conceptual/ObjectiveC/Articles/ocProperties.html" rel="nofollow">iPhone Reference Library</a>: "<em>For the modern runtimes, instance variables are synthesized as needed. If an instance variable of the same name already exists, it is used.</em>"</p> <p>If you use this feature in your iPhone app, it builds and runs fine on the iPhone (physical) device, but when you change the target to "iPhone Simulator", you get build errors:</p> <p><em>synthesized property 'x' must either be named the same as a compatible ivar or must explicitly name an ivar</em></p> <p>What's going on here? Isn't the iPhone simulator a real iPhone simulator? Does this mean that the simulator uses a different runtime than the physical iPhone?</p> <p>How can I use this feature on the iPhone simulator?</p> <p><strong><em>EDIT:</em></strong></p> <p>The code which doesn't compile when targeting the iPhone Simulator is:</p> <pre><code>@interface MyClass : NSObject { } @property NSString *prop1; @end </code></pre> <p>According to the documentation, this should work fine on the "modern" runtime, and indeed it does on the iPhone device, but it doesn't compile when changing the target to iPhone Simulator.</p> http://stackoverflow.com/questions/1907814/c-cli-shorthand-properties 0 C++/CLI shorthand properties DanDan 2009-12-15T14:26:33Z 2009-12-15T14:48:39Z <p>Hello, How does a developer do the equivalent of this in managed c++? :</p> <p>c# code</p> <pre><code>public String SomeValue { get; set; } </code></pre> <p>I've scoured the net and found some solutions, however it is hard to distinguish which is the correct (latest, .NET 3.5) way, given the colourful history of getters/setters and managed c++.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1904427/is-it-possible-to-use-ninject-with-a-static-property 1 Is it possible to use Ninject with a static property? Daniel T. 2009-12-15T00:09:37Z 2009-12-15T01:24:54Z <p>I have a static <code>SessionFactory</code> class that initializes an NHibernate session factory. Because this process is expensive (~5 sec.), I want it to be static so it's only done once, at the beginning of runtime.</p> <p>The configuration can take a database parameter parameter like so:</p> <pre><code>public static IPersistenceConfigurer DbConfig { get; set; } public static void Initialize() { var cfg = Fluently.Configure() .Database(DbConfig) .Mappings(some mappings) .BuildConfiguration(); } </code></pre> <p>Is it possible to use Ninject to inject DbConfig with the correct constant?</p> http://stackoverflow.com/questions/1727232/spring-properties-file 0 Spring Properties File cedric 2009-11-13T05:05:41Z 2009-12-14T19:55:33Z <p>Hi. Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using native2ascii and it solved my problem. Is there no other way of converting the file through setting the encoding to ascii in the configuration files instead of manually converting it by executing native2ascii in command prompt</p> http://stackoverflow.com/questions/1902477/properties-file-not-working-with-struts2-and-glassfish 0 Properties file not working with Struts2 and Glassfish Omnipresent 2009-12-14T18:04:23Z 2009-12-14T18:04:23Z <p>I have a properties file in my application which is built using S2. The properties files resides in <code>WEB-INF/classes</code> and are mentioned in <code>struts.properties</code> as:</p> <pre><code>struts.custom.i18n.resources=myproperty1,myproperty2 </code></pre> <p>to use the properties i just do the following in my JSP's</p> <pre><code>&lt;s:text name="my.property.title"/&gt; </code></pre> <p>this setup works fine on the old App server we were using (Sun AppServer 8.2). However, this setup does not work on GlassFish V2 server. </p> <p>Has anyone come across this issue?</p> <p>What are some other options that I can try? I am willing to try new options as long as my code in JSP's remains mostly untouched. </p> http://stackoverflow.com/questions/1891372/how-to-create-mvc-htmlhelper-table-from-list-of-objects 1 How to create MVC HtmlHelper table from list of objects David Liddle 2009-12-11T22:46:43Z 2009-12-13T17:45:47Z <p>I am trying to create a specific HtmlHelper table extension to reduce the spaghetti code in my View.</p> <p>Taking a list of domain objects I would like to display a table that is a little bit more intelligent in using the properties of the domain object as columns. In addition, I would like to disable showing of some properties as columns. An idea would be to decorate properties with attributes that tell it not to be shown.</p> <p>Hopefully that makes sense but here's where I got to so far...</p> <pre><code>public static string MyTable(this HtmlHelper helper, string name, IList&lt;MyObject&gt; items, object tableAttributes) { if (items == null || items.Count == 0) return String.Empty; StringBuilder sb = new StringBuilder(); BuildTableHeader(sb, items[0].GetType()); //TODO: to be implemented... //foreach (var i in items) // BuildMyObjectTableRow(sb, i); TagBuilder builder = new TagBuilder("table"); builder.MergeAttributes(new RouteValueDictionary(tableAttributes)); builder.MergeAttribute("name", name); builder.InnerHtml = sb.ToString(); return builder.ToString(TagRenderMode.Normal); } private static void BuildTableHeader(StringBuilder sb, Type p) { sb.AppendLine("&lt;tr&gt;"); //some how here determine if this property should be shown or not //this could possibly come from an attribute defined on the property foreach (var property in p.GetProperties()) sb.AppendFormat("&lt;th&gt;{0}&lt;/th&gt;", property.Name); sb.AppendLine("&lt;/tr&gt;"); } //would be nice to do something like this below to determine what //should be shown in the table [TableBind(Include="Property1,Property2,Property3")] public partial class MyObject { ...properties are defined as Linq2Sql } </code></pre> <p>So I was just wondering if anyone had any opinions/suggestions on this idea or any alternatives?</p> http://stackoverflow.com/questions/1775463/what-is-the-purpose-of-these-phpdoc-properties 0 What is the purpose of these PHPDOC properties? Kaitsuli 2009-11-21T13:20:23Z 2009-12-12T18:36:33Z <p>In general, the PHPDOC properties are self-explanatory, but I'm having hard time understanding these:</p> <p><code>@category</code> - what is this exactly?</p> <p><code>@package</code> - could some one provide me examples about the usage of this property?</p> http://stackoverflow.com/questions/1885371/web-config-explanation-of-profile-properties 0 web.config explanation of profile properties Vince 2009-12-11T01:54:22Z 2009-12-11T01:59:28Z <p>hi,</p> <p>I have a List&lt;> as part of a users profile stroed in the web.config like so</p> <pre><code>&lt;properties&gt; &lt;clear/&gt; &lt;add name="EditorUploads" type="System.Collections.Generic.List`1[[System.String]]"/&gt; &lt;/properties&gt; </code></pre> <p>Although this code works, I don't know why. I can't find any documentation on what the <strong>`1</strong> means anywhere. Can anyone shed some light on this please? Thanks.</p> http://stackoverflow.com/questions/1876495/objective-c-accessor-declarations-readonly-readwrite-etc 2 Objective-C accessor declarations (readonly, readwrite, etc) RyJ 2009-12-09T20:07:07Z 2009-12-09T22:54:49Z <p>In the book, "Cocoa Design Patterns," the author sometimes declares a property in the @interface as readonly:</p> <pre><code>// .h @property (readonly, copy) NSArray *shapesInOrderBackToFront; </code></pre> <p>and then later adds an <i>unnamed category</i> to the implementation (.m) file like this:</p> <pre><code>// .m @interface MYShapeEditorDocument () @property (readwrite, copy) NSArray *shapesInOrderBackToFront; @end </code></pre> <p>Any idea as to why? It's unclear to me how this approach is better than, or more necessary than, initially declaring the property as "readwrite".</p> http://stackoverflow.com/questions/1877082/does-an-abstract-property-create-a-private-backing-field 2 Does an abstract property create a private backing field? Daniel T. 2009-12-09T21:38:19Z 2009-12-09T21:55:05Z <p>Simple question: does an abstract property create a private backing field? Example:</p> <pre><code>public abstract Name { get; set; } </code></pre> <p>Will this create a private backing field? I want to force any class that derives this property to use their own backing field, not one that's created by the compiler.</p> http://stackoverflow.com/questions/1876579/getting-property-value-is-not-valid-message-when-control-is-in-design-mode-vs 0 Getting "Property value is not valid" message when Control is in Design Mode (VS 2008) Gerhard Weiss 2009-12-09T20:16:21Z 2009-12-09T20:16:21Z <p>I am getting dialog box <strong>"Property value is not valid"</strong> when the Control is in <strong>Design Mode</strong> (Visual Studio 2008) and I try to change the Property's Value. </p> <p>Here is the property in question:</p> <pre><code>&lt;Description("Gets/Sets the visibillity of the SaveButton of Control")&gt; _ Property ShowSaveButton() As Boolean Get Return _SaveVisible End Get Set(ByVal Value As Boolean) _SaveVisible = Value If Value Then If Model.CommonUser.CurrentUser.IsReadOnly = False Then CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton) End If Else DoRemove(enBeneButtons.enSaveButton) End If End Set End Property </code></pre> <p>The error detail shows "<strong>CommonUser</strong> must be initialized first.", which of course is pointing at this code.</p> <pre><code>If Model.CommonUser.CurrentUser.IsReadOnly = False Then CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton) End If </code></pre> <p>Is there some sort of if statement that can be used to skip around code when in Design Mode. VisualStudioDesignMode is used below.</p> <pre><code>If VisualStudioDesignMode = True Then CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton) ElseIf Model.CommonUser.CurrentUser.IsReadOnly = False Then CreateButton("SaveButton", "Save", enBeneButtons.enSaveButton) End If </code></pre> <p>Again, this dialog box comes up in VS 2008 design mode. The logic works when the application is running.</p> http://stackoverflow.com/questions/1876197/c-why-have-empty-get-set-properties-instead-of-using-a-public-member-variable 6 c#: why have empty get set properties instead of using a public member variable? [closed] Jeremy 2009-12-09T19:23:04Z 2009-12-09T19:46:57Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1180860/c-public-fields-versus-automatic-properties">C#: Public Fields versus Automatic Properties</a> </p> </blockquote> <p>With the somewhat recent ability to have empty getters and setters, what is the benefit of using them instead of just declaring a public member variable?</p> <p>Example:</p> <pre><code>public string MyProperty { get; set; } </code></pre> <p>versus:</p> <pre><code>public string MyProperty; </code></pre> http://stackoverflow.com/questions/1875720/why-could-an-expressions-body-in-c-net-not-use-properties-of-type-int-double-o 1 Why could an Expression's Body in C#.net not use properties of type int, double or bool? Jronny 2009-12-09T18:05:35Z 2009-12-09T18:25:07Z <p>I have a function:</p> <pre><code>private string GetPropertyName(Expression&lt;Func&lt;object, object&gt;&gt; f) { if ((f.Body as MemberExpression) != null) { return (f.Body as MemberExpression).Member.Name; } return ""; } </code></pre> <p>And it is used this way: </p> <pre><code>string x1 = GetPropertyName(x =&gt; Property1); string x2 = GetPropertyName(x =&gt; Property2); string x3 = GetPropertyName(x =&gt; Property3); </code></pre> <p>where Property1 is an int, Property2 is a string, and Property3 is an object...</p> <p>Only the names of Property2 and Property3 of types string and object respectfully are correctly returned, but Property1's f.Body as MemberExpression is null...</p> <p>Why is this so, and how can we change the code so the function returns the Properties' names correctly?</p> http://stackoverflow.com/questions/1811395/grails-indexed-parameters 4 Grails indexed parameters Frederic Daoud 2009-11-28T02:52:56Z 2009-12-09T14:27:16Z <p>I have a list of <code>Team</code> objects that have an <code>Integer seed</code> property. I want to edit all the teams' seeds at once, in a single form. I'm <i>sure</i> that Grails supports indexed parameters, but I can't get it to work.</p> <p>Here is what I have, and it works but I'm jumping through <i>way</i> too many hoops and there's gotta be a better way.</p> <p>gsp:</p> <pre><code>&lt;g:form action="setSeeds"&gt; ... &lt;g:each in="${teams}" status="i" var="team"&gt; &lt;input type="hidden" name="teams[${i}].id" value="${team.id}"&gt; &lt;input type="text" size="2" name="teams[${i}].seed" value="${team.seed}"&gt; &lt;/g:each&gt; &lt;/g:form&gt; </code></pre> <p>controller:</p> <pre><code>def setSeeds = { (0..&lt;30).each { i -&gt; def team = Team.get(Integer.parseInt(params["teams[${i}].id"])) team.seed = Integer.parseInt(params["teams[${i}].seed"]) } redirect(action:list) } </code></pre> <p>Isn't that awful? Way too much noise. How can I do something along the lines of:</p> <pre><code>params.teams.each { t -&gt; def team = Team.get(t.id) team.seed = t.seed } </code></pre> <p>That is, how do I map params named <code>team[0].seed</code>, <code>team[0].id</code>, <code>team[1].seed</code>, <code>team[1].id</code> to a List?</p> <p>In <a href="http://www.stripesbook.com" rel="nofollow">Stripes</a> you can just have a <code>List&lt;Team&gt;</code> property and it will just work. I expect no less from Grails! ;-)</p> <p>Thanks in advance for your help.</p> http://stackoverflow.com/questions/1867708/how-to-pass-properties-by-reference-in-c 0 How to pass properties by reference in c#? Jronny 2009-12-08T15:30:32Z 2009-12-09T12:59:41Z <p>I am not sure if I have asked the question correctly. Please correct me if I am wrong.</p> <p>Anyways, we would like to use a variable's value on a different phases of the page's life cycle.</p> <p>So for example,</p> <pre><code>public partial class TestUserControl: UserControl{ public TestUserControl(){ Objects = new List&lt;object&gt;(){ Property1, Property2, Property3 }; } public int Property1 { get; set; } public bool Property2 { get; set; } public string Property3 { get; set; } public List&lt;object&gt; Objects { get; set; } protected override OnLoad(EventArgs e){ foreach(var item in Objects){ Page.Controls.Add(new LiteralControl(item.ToString() + "&lt;br/&gt;")); } } } </code></pre> <p>So if we say the values of Property1, Property2, Property3 are set as they were written on the tag, how could we use the properties' values just as when needed?</p> <p>That on the constructor, instead of the values of the properties will be listed down on the List, only the Properties' names will be listed down so their current values will be used on OnLoad.</p> <p>Thanks a lot.</p> <p><hr/> Edit: I have adopted deerchao's and Jon's approach, but there seems to be another problem we will be facing... It's like:</p> <pre><code>public partial class TestUserControl: UserControl{ public TestUserControl(){ Objects = List&lt;Func&lt;object&gt;&gt;{ () =&gt; Property1, () =&gt; Property2, () =&gt; Property3 }; } public int Property1 { get; set; } public bool Property2 { get; set; } public string Property3 { get; set; } public List&lt;Func&lt;object&gt;&gt; Objects { get; set; } protected override OnLoad(EventArgs e){ foreach (var item in Objects) { //Here is the problem... can we get the variable name using this approach? //We have tried some other ways like reflection and expressions but to no avail. Help please =) string key = GetVariableName(item()); string value = item() == null ? string.Empty : item().ToString(); Page.Controls.Add(new LiteralControl(key + " : " + value + "&lt;br/&gt;")); } } } </code></pre> http://stackoverflow.com/questions/1869451/how-do-i-create-a-generic-property-in-vb-net 0 How do I create a generic property in VB.NET? iaman00b 2009-12-08T20:00:59Z 2009-12-08T20:06:14Z <p>I'd like to do something like this:</p> <pre><code>Private _myCollection As IList(Of T) Public Property MyProperty(Of T)() as IList(Of T) Get Return Me._myCollection End Get Set(ByVal value As String) Me._myCollection = value End Set End Property </code></pre> <p>Basically, I want to have a collection of items that may be of any type. Then, I'll be able to do something like this:</p> <pre><code>Dim myPropertyValue as &lt;the type of some value&gt; if (MyProperty.Contains(&lt;some value&gt;)) myPropertyValue = CType(MyProperty(&lt;some value&gt;), &lt;the type of some value&gt;) </code></pre> <p>How can I do this? Or is there a better way than using a generic type?</p> http://stackoverflow.com/questions/1803075/crowdsourcing-a-complete-list-of-common-java-system-properties-and-known-values 8 Crowdsourcing a Complete list of Common Java System Properties and Known Values sfussenegger 2009-11-26T11:14:31Z 2009-12-08T16:41:23Z <p><em>I've been inspired by another question: <a href="http://stackoverflow.com/questions/487590/best-practice-for-using-java-system-properties">Best Practice for Using Java System Properties</a></em></p> <p>I'm currently looking for a complete list of Java system properties and possible values. I'm working on a simple class to simplify use of them (If you're interested, <a href="http://techblog.molindo.at/files/SystemProperty.java" rel="nofollow">get the source</a> and <a href="http://techblog.molindo.at/2009/11/java-system-properties.html" rel="nofollow">background info (my blog)</a>). With this class, I try to provide the following:</p> <ul> <li>simple and consistent access to Java system properties (no String constants)</li> <li><em>full</em> documentation of available properties and their possible values – within my IDE (i.e. auto-completion, inline Javadoc)</li> <li>fix inconsistencies in returned values and/or naming</li> <li>make sure that java.io.tmpdir exists – acutally that’s the main reason why I’m doing all this :)</li> </ul> <p>To get full documentation and a complete list of available properties (even those where availability is heavily JVM-dependent), I'd like you to <a href="http://techblog.molindo.at/files/SystemProperty.java" rel="nofollow">download the source</a>, run it and post your results. I'll update the class accordingly and keep it available at the given location. Hopefully, it will ease live of some of you out there :)</p> <p>Edit:</p> <p>I'm not looking for standard properties as described by <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/System.html#getProperties%28%29" rel="nofollow">System.getProperties()</a> or all properties that are available on my system. I'm trying to create a comprehensive list of system properties - even those that are vendor, jvm or version related - those that aren't guaranteed to exist and whose documentation is sparse or hard to find. Properties like </p> <ul> <li>sun.desktop (Linux only, e.g. "gnome"), </li> <li>awt.toolkit (Mac only, e.g. apple.awt.CToolkit)</li> <li>sun.cpu.endian (Sun JVMs only)</li> <li>...</li> </ul> <p>I'd love to get others to run my code and post their results in order to compile a comprehensive list (with extensive documentation of properties and their possible values) in the form of a Java enum that's easy to use e.g.:</p> <pre><code>String file = SystemProperty.JAVA_IO_TMPDIR + "file.txt"; </code></pre> <p>instead of </p> <pre><code>String tmp = System.getProperty("java.io.tmpdir"); if (!tmp.endsWith(File.separator) tmp += File.separator; new File(tmp).mkdirs(); // make sure tmp exists String file = path + "file.txt" </code></pre> <p>So please run that code and post your findings. Here is a simple script to get you started:</p> <pre><code>#!/bin/bash # download and run # you should really look at the code first, as you can't be sure # that I'm a trustworthy guy ;) wget -N http://techblog.molindo.at/files/SystemProperty.java javac SystemProperty.java java SystemProperty </code></pre> <p><em>(I know this isn't a real question but rather a crowd sourcing thing. I hope nobody minds)</em></p> <p><strong>Bounty:</strong></p> <p>As there is no correct answer to this question, the bounty will be awarded to the person who discovers most new system properties. As a hint: testing non-standard JVMs (J2ME, Android, GCJ, OpenJDK, Apache Harmony, ...) and common languages on top of the JVM (Groovy, Scala, JRuby, ..) should be especially yielding.</p> <p>Current leaders:</p> <ol> <li><a href="http://stackoverflow.com/questions/1803075/crowdsourcing-a-complete-list-of-common-java-system-properties-and-known-values/1859729#1859729">rsp</a> 19 discovered properties</li> <li><a href="http://stackoverflow.com/questions/1803075/complete-list-of-available-java-system-properties-and-known-values/1815698#1815698">Boris</a> 14 discovered properties</li> <li><a href="http://stackoverflow.com/questions/1803075/crowdsourcing-a-complete-list-of-common-java-system-properties-and-known-values/1867710#1867710">Joa Ebert</a> 8 discovered properties</li> <li><a href="http://stackoverflow.com/questions/1803075/complete-list-of-available-java-system-properties-and-known-values/1803144#1803144">Suraj Chandran</a> 1 discovered property</li> </ol> <p>Btw, I'm planning to release the final result as a Maven artifact and upload it to the central repository as soon as I have enough input.</p> http://stackoverflow.com/questions/1860650/java-util-logging-config 0 java.util.logging.config Aly 2009-12-07T15:20:41Z 2009-12-07T15:25:19Z <p>Is there a way to set the location of the properties file withough specifying a JVM param such as -Djava.util.logging.config.file=log.properties ?</p> http://stackoverflow.com/questions/943774/packaging-jar 0 Packaging Jar Flustered 2009-06-03T09:07:01Z 2009-12-06T11:59:59Z <p>Hi,</p> <p>It has been a frustrating day trying to package multiple plugins and their property files into an executable jar.<br><br></p> <p>How to I package these plugins into a single jar, leaving the properties files outside:<br> - pluginA with pluginA.properties<br> - pluginB with pluginB.properties<br> - pluginC that requires pluginA and pluginB<br><br></p> <p>The property files are accessible from within their relevant plugin, e.g. pluginA.properties is accessible from pluginA.<br> However, the properties files are not accessible from pluginC.<br><br></p> <p>Can someone please help?<br><br></p> <p>Thanks :)</p> http://stackoverflow.com/questions/1847411/control-properties-in-visual-basic-6 1 Control Properties in Visual Basic 6 mRt 2009-12-04T14:49:10Z 2009-12-04T17:49:37Z <p>Is there a way to ask for a control property in a loop??</p> <p>I need somethig like this:</p> <pre><code>For each p in control.properties if p = "Value" then msgbox "I Have Value Property" elseif p = "Caption" then msgbox "I Have Caption Property" end if next </code></pre> <p>It could be done somehow?</p> http://stackoverflow.com/questions/1787725/what-is-the-accepted-way-to-enforce-proper-value-in-property-which-depends-on-oth 1 What is the accepted way to enforce proper value in property which depends on other properties of the same class? YonahW 2009-11-24T04:12:39Z 2009-12-04T09:17:19Z <p>Let's say I have a class which has three properties as below. </p> <pre><code>public class Travel { public int MinAirportArrival { get; set; } public int MinFlightTime { get; set; } public int TotalTravelTime { get; set; } } </code></pre> <p>TotalTravelTime must be at least the sum of MinAirportArrival and MinFlightTime but could also be more in the event there is a stopover or something of the sort.</p> <p>It is clear to me that I can put logic in the setter for TotalTravelTime.</p> <p>My question is regarding the changing of MinFlightTime and MinAirportArrival. Is it right to expect that TotalTravelTime be increased first and if not to throw an exception when one of the others will make the sum larger that TotalTravelTime?</p> <p>What are my other options for controlling this in a reasonable fashion?</p> <p>Should I just leave this to the object responsible for saving the state to check a valid property on the class? I may have other logic to put in there as well.</p> <p>EDIT<br> I am not storing anywhere an amount for the extra time if there is any so this is not just a matter of adding up a few properties. Just to clarify this class is just a contrived example of the issue I am facing but I think it matches the problem pretty well.</p> http://stackoverflow.com/questions/1829582/c-property-is-it-possible-to-get-around-defining-get-without-defining-set-no-b 6 C# property, is it possible to get around defining get without defining set (no backing variable)? Andrew 2009-12-01T23:06:11Z 2009-12-03T14:08:37Z <p>Lets say you have a Class with 300 properties with no backing variables, each of those properties returns a decimal/double. </p> <p>Example:</p> <pre><code>public decimal MathValue { get; set; } </code></pre> <p>Now you decided that each one of those values should be rounded.</p> <p>I am looking for the simplest way to refactor this without having to rewrite all of those properties.</p> <p>Something, of this equivalent that actually works :D:</p> <pre><code>public decimal MathValue { get {return Math.Round(MathValue);} set; } </code></pre> http://stackoverflow.com/questions/1839222/how-to-remove-unnecessary-properties-from-user-control 0 how to remove unnecessary properties from user control? Sadegh 2009-12-03T11:01:13Z 2009-12-03T11:23:54Z <p>hi all, i want to remove unnecessary properties from user control. But I do not know what way?</p> http://stackoverflow.com/questions/1834954/loading-properties-in-spring-context-xml-and-persistence-xml 2 loading .properties in spring-context.xml and persistence.xml subes 2009-12-02T18:42:56Z 2009-12-03T00:11:05Z <p>Hi,</p> <p>is there a way to reference a .properties file in a spring-context.xml and a JPA persistence.xml?</p> <p>I think I've seen somewhere an example of this in spring context files, though I can't remember where that was. Maybe someone knows this? About the persistence.xml I am actually unsure if this works at all.</p> <p>My aim is to change some properties between development and distribution configuration. The idea I have currently is to replace all properties manually in the files via ant from a template config. Though there should be a better way to do this. :)</p> http://stackoverflow.com/questions/1829492/property-refuses-to-synthesize 0 Property Refuses to Synthesize Kaji 2009-12-01T22:50:02Z 2009-12-02T11:57:16Z <p>I've been going through the screencasts <a href="http://www.pragprog.com/screencasts/v-bdiphone/writing-your-first-iphone-application" rel="nofollow">here</a> to learn how to write a table-based iPhone application, and it's been going pretty smoothly so far. Presently I'm halfway through the third episode, and it's starting to hit a snag.</p> <p>In order to remove temporary hard-coding for the top layer of the table, the tutorial creates an <code>NSMutableDicitonary</code> for all the entries and their data, and then creates an <code>NSArray</code> using the <code>forKeys</code> statement to get an array with just the headwords to display in the table cells.</p> <p>The problem I'm having is that the variable for the array refuses to synthesize.</p> <p>The offending variable is defined in the <code>AppDelegate.h</code> file with the rest of the properties as follows:</p> <pre><code>@property (readonly) NSArray *recipes; </code></pre> <p>It is then synthesized and implemented in the <code>AppDelegate.m</code> file as follows:</p> <pre><code>@synthesize recipes; - (NSArray *)recipes { return [data allKeys]; } </code></pre> <p>I inquired with the author of the screencast, and he suggested the following for <code>AppDelegate.h</code>:</p> <pre><code>@class Foo :NSObject { NSArray *_recipes; } @property(nonatomic, retain)NSArray *recipes; @end </code></pre> <p>And this for <code>AppDelegate.m</code>:</p> <pre><code>@implementation Foo @synthesize recipes = _recipes; @end </code></pre> <p>I tried this method, but it created more errors than there were before. What makes this variable definition different from any other @property, and how can I make it behave?</p> http://stackoverflow.com/questions/1094121/application-configuration-files-for-glassfish-java-ee-5-web-services 2 Application configuration files for Glassfish/Java EE 5 web services... LikeItEasy 2009-07-07T18:52:43Z 2009-12-01T17:41:30Z <p>I am trying to write some simple Java web services so we can call Java code from .NET. So far, I got a proof-of-concept working under Glassfish. Pretty straightforward when the IDE does all the work.</p> <p>Now I'm really bogging down on stuff in Java that <em>should be really simple</em>. For example, I want to externalize my configuration so I can change stuff like connection strings/usernames/application variables/etc without recompiling.</p> <p>In .NET, you would just stick some strings in the web.config file in the root of the web site and use: <code>ConfigurationManager.AppSettings["whateverIwant"]; </code></p> <p>I can get java.util.Properties to do what I want (from a standalone client), but I can't figure out where to put the .properties file and how to get the path to it from within the web service.</p> <p>I need my approach to work within WebSphere Application Server as well. Thanks!</p>