Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Origin of hierarchical structuring

Why are libraries located behind com/ or net/ directory structures?

like image 262
mate64 Avatar asked Jun 07 '11 19:06

mate64


1 Answers

This is agnostic to Flash, Flex or any language. It's been used for a long time in general software development. I believe it stemmed from the Java package structure, but I'm not sure. It's used because it's now a standard on how to do things and helps split up projects in a fairly unique way.

It normally goes like <domain extension>/<domain>/<project name>/<sub component>/<whatever>.

like image 131
J_A_X Avatar answered Sep 21 '22 12:09

J_A_X