Changes between Version 74 and Version 75 of DeveloperGuidelines/Eclipse
- Timestamp:
- 03/26/16 13:58:11 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Eclipse
v74 v75 105 105 === Accessing private data === 106 106 Some data is marked as private to let other developers know they shouldn't access this directly 107 * e.g. in {{{s3 xrc.py}}} we have {{{S3Resource.__set}}} & {{{S3Resource.__query}}}107 * e.g. in {{{s3resource.py}}} we have {{{S3Resource.__set}}} & {{{S3Resource.__query}}} 108 108 This then means that Eclipse can't see these attributes as {{{self.__set}}}, etc. 109 109