Returns the qualified path to the bundle's Java resource folder. E.g. Chromium.app/Contents/Resources/Java. Only valid for bundles.
(self)
| 332 | return os.path.join(self.GetBundleContentsFolderPath(), "MacOS") |
| 333 | |
| 334 | def GetBundleJavaFolderPath(self): |
| 335 | """Returns the qualified path to the bundle's Java resource folder. |
| 336 | E.g. Chromium.app/Contents/Resources/Java. Only valid for bundles.""" |
| 337 | assert self._IsBundle() |
| 338 | return os.path.join(self.GetBundleResourceFolder(), "Java") |
| 339 | |
| 340 | def GetBundleFrameworksFolderPath(self): |
| 341 | """Returns the qualified path to the bundle's frameworks folder. E.g, |
no test coverage detected