Top "Properties" questions

A property, in some object-oriented programming languages, is a special sort of class member, intermediate between a field (or data member) and a method.

Get PHP class property by string

How do I get a property in a PHP based on a string? I'll call it magic. So what is …

php string oop properties
VB.Net Properties - Public Get, Private Set

I figured I would ask... but is there a way to have the Get part of a property available as …

vb.net properties scope
Using multiple property files (via PropertyPlaceholderConfigurer) in multiple projects/modules

We are currently writing an application which is split into multiple projects/modules. For example, let's take the following modules: …

java spring properties
Inconsistent accessibility: property type is less accessible

Please can someone help with the following error: Inconsistent accessibility: property type 'Test.Delivery' is less accessible than property 'Test.…

c# properties
What is the difference between attribute and property?

These seem to mean the same thing. But what term is more appropriate in what context?

properties modeling
Load properties file in JAR?

I'm having trouble when one of the jars that my web app depends on tries to load a properties file …

java maven-2 resources properties classloader
How to access property of anonymous type in C#?

I have this: List<object> nodes = new List<object>(); nodes.Add( new { Checked = false, depth = 1, id = "…

c# .net object properties anonymous-types
Error in Swift class: Property not initialized at super.init call

I have two classes, Shape and Square class Shape { var numberOfSides = 0 var name: String init(name:String) { self.name = name } …

properties compiler-errors swift
Python read-only property

I don't know when attribute should be private and if I should use property. I read recently that setters and …

python properties python-2.7 private readonly
How to use BeanUtils.copyProperties?

I am trying to copy properties from one bean to another. Here are the signature of two beans: SearchContent: public …

java properties apache-commons-beanutils